X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=scripts%2Fdebian%2Fbyhand-win32-loader;h=3afc8d52882aee9032c8fee8ea566824686ebd19;hb=b24eec00b8b179262d215c9fc56cbfc321e45300;hp=2006a195578cfa9bf796d3f65e0d64bb8e04ab07;hpb=abcd0f018dc49a218ce70d22e97fc7b654fcf1c8;p=dak.git diff --git a/scripts/debian/byhand-win32-loader b/scripts/debian/byhand-win32-loader index 2006a195..3afc8d52 100755 --- a/scripts/debian/byhand-win32-loader +++ b/scripts/debian/byhand-win32-loader @@ -11,7 +11,8 @@ fi export SCRIPTVARS=/srv/ftp-master.debian.org/dak/config/debian/vars . $SCRIPTVARS -WIN32_LOADER_FILE="$1" # win32-loader_${VERSION}_${ARCH}{.exe,txt} +WIN32_LOADER_PATH="$1" # win32-loader_${VERSION}_${ARCH}{.exe,txt} +WIN32_LOADER_FILE="${WIN32_LOADER_PATH##*/}" VERSION="$2" ARCH="$3" CHANGES="$4" # Changes file for the upload @@ -32,6 +33,16 @@ case $SUITE in ;; esac +case "${WIN32_LOADER_FILE}" in + win32-loader_*.exe|win32-loader_*.txt) + : # okay + ;; + *) + echo "Error: invalid filename for byhand-win32-loader" + exit 1 + ;; +esac + # This must end with / TARGET="${ftpdir}/tools/win32-loader/${SUITE}/" @@ -47,7 +58,7 @@ fi # Put said file into the tools directory # Use --remove-destination to avoid problems with the fact that the target may # be a hardlink and in that case we'd update multiple suites together -cp --remove-destination "$WIN32_LOADER_FILE" "${TARGET}${TARGET_FILENAME}" +cp --remove-destination "$WIN32_LOADER_PATH" "${TARGET}${TARGET_FILENAME}" # Chmod it correctly chmod 0644 "${TARGET}${TARGET_FILENAME}"