Index: build.sh =================================================================== diff -u -rc53da4bc58ecec2ac9bcd7a26da5ddf8f054d310 -r3598a284ecdfaf270b1fcff57866f99a69bcb4e7 --- build.sh (.../build.sh) (revision c53da4bc58ecec2ac9bcd7a26da5ddf8f054d310) +++ build.sh (.../build.sh) (revision 3598a284ecdfaf270b1fcff57866f99a69bcb4e7) @@ -23,14 +23,14 @@ NEW_NAME+="-000" fi if [ -n "$2" ]; then - NEW_NAME+=".$2" # Append the Project Checkout Branch Name + NEW_NAME+=".$2" # Append the Project Checkout Branch Name; Note: Don't use '-' as separator after the version as it messes up the tags else NEW_NAME+=".local" fi if [ -n "$3" ]; then - NEW_NAME+=".$3" # Append the Build Commit Hash + NEW_NAME+=".$3" # Append the Build Commit Hash; Note: Don't use '-' as separator after the version as it messes up the tags fi -NEW_NAME+="-py3-none-any.wsl" +NEW_NAME+="-py3-none-any.whl" # -py3-none-any are tags needed for pip after the version information NEW_NAME=$(sed -e "s/\//_/g" <<< "$NEW_NAME") # Replaces backslashes in the branch name parameter with underscore