Skip to content

Commit

Permalink
Merge pull request #2066 from GaloisInc/2062-improve-build-sh
Browse files Browse the repository at this point in the history
Improvements to build.sh.
  • Loading branch information
sauclovian-g authored Jul 16, 2024
2 parents 5288988 + e4d9ee2 commit d3ea36f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
#!/bin/bash
#!/bin/sh
# build.sh: build SAW
# usage: ./build.sh
set -e

git submodule update --init

function install() {
cp $(find dist-newstyle -type f -name $1 | sort -g | tail -1) bin/
PROG=$(cabal list-bin exe:$1)
cp $PROG bin/
}

cabal build exe:cryptol exe:saw exe:saw-remote-api \
Expand Down

0 comments on commit d3ea36f

Please sign in to comment.