Skip to content

Commit

Permalink
change bootstrap script to use swift6
Browse files Browse the repository at this point in the history
  • Loading branch information
samdeane committed Sep 3, 2024
1 parent d74cab5 commit 439cc30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/Resources/Scripts/bootstrap-tools
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fi

set -euo pipefail # (add an x to flags to enable debugging)

LOCALTOOLS="$PWD/../ReleaseTools"
LOCALTOOLS="$PWD/../ReleaseTools-disabled" # TODO: re-enable this when we have a stable release
if [[ -e "$LOCALTOOLS" ]]
then
RT="$LOCALTOOLS/.build/debug/rt"
Expand Down Expand Up @@ -65,13 +65,13 @@ then
else
pushd "$RTSRC" > /dev/null
git fetch
git checkout main
git checkout swift6 # TODO: change back to main when we have a stable release
git pull
fi
echo "Updating release tools."
fi

swift run builder build ..
swift run rt --version
popd > /dev/null
"$RT" bootstrap
fi
Expand Down

0 comments on commit 439cc30

Please sign in to comment.