Skip to content

Commit

Permalink
Fix CI directory
Browse files Browse the repository at this point in the history
  • Loading branch information
vkuncak committed Sep 16, 2024
1 parent 2711f72 commit 3aaa55b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions stainless-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,17 +108,18 @@ fi
if [ "$SKIP_BUILD" = true ]; then
echo "************** Skipping build **************"
else
push
ROOT_DIR=$PWD
echo "************** sbt **************"
SBT_DIR="temp" # make better later
SBT_DIR=$ROOT_DIR/temp # make better later
mkdir -p $SBT_DIR
SBT_NAME="sbt-1.10.1.tgz"
wget https://github.com/sbt/sbt/releases/download/v1.10.1/$SBT_NAME -O $SBT_DIR/$SBT_NAME --no-verbose
echo " unpack $SBT_NAME"
cd $SBT_DIR
echo " now I am in " `pwd`
tar xfz $SBT_NAME


cd $ROOT_DIR
echo Testing ${SBT_DIR}/sbt/bin/sbt --version
${SBT_DIR}/sbt/bin/sbt --version
pop
Expand Down

0 comments on commit 3aaa55b

Please sign in to comment.