We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 359b350 + 9d4cd8e commit 4e046edCopy full SHA for 4e046ed
release/source-build.sh
@@ -36,6 +36,14 @@ fi
36
git -C $TOP_DIR/src/openvpn-gui remote update
37
#TODO: make idempotent
38
if ! [[ "$MSI_BUILD_ONLY" == "YES" ]]; then
39
+ # Re-initialize source directory to make sure we do not have
40
+ # any leftovers from previous builds
41
+ read -p "Would you like to re-initialize source directory? (Y/n): " resp
42
+ if [[ "$resp" != "N" && "$resp" != "n" ]]; then
43
+ rm -rf "$TOP_DIR"/src/*
44
+ git submodule update --init --recursive
45
+ fi
46
+
47
$SCRIPT_DIR/create-release-files.sh
48
read -p "Upload tarballs to $SECONDARY_WEBSERVER?"
49
# uploads tarballs, required by some build steps
0 commit comments