diff options
| author | Marijn Tamis <[email protected]> | 2018-05-03 18:22:48 +0200 |
|---|---|---|
| committer | Marijn Tamis <[email protected]> | 2018-05-03 18:22:48 +0200 |
| commit | ca32c59a58d37c1822e185a2d5f3d0d3e8943593 (patch) | |
| tree | b06b9eec03f34344ef8fc31aa147b2714d3962ee /NvCloth/scripts/packman/packman.sh | |
| parent | Forced rename of platform folders in cmake dir. Git didn't pick this up before. (diff) | |
| download | nvcloth-ca32c59a58d37c1822e185a2d5f3d0d3e8943593.tar.xz nvcloth-ca32c59a58d37c1822e185a2d5f3d0d3e8943593.zip | |
NvCloth 1.1.4 Release. (24070740)
Diffstat (limited to 'NvCloth/scripts/packman/packman.sh')
| -rw-r--r-- | NvCloth/scripts/packman/packman.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/NvCloth/scripts/packman/packman.sh b/NvCloth/scripts/packman/packman.sh index 3fbd753..a892def 100644 --- a/NvCloth/scripts/packman/packman.sh +++ b/NvCloth/scripts/packman/packman.sh @@ -1,6 +1,6 @@ #!/bin/bash -PM_PACKMAN_VERSION=5.0-rc2 +PM_PACKMAN_VERSION=5.1 # Specify where packman command exists export PM_INSTALL_PATH=$(dirname ${BASH_SOURCE}) @@ -66,9 +66,9 @@ fi # Ensure 7za package exists: PM_7za_VERSION=16.02 -export PM_7za_PATH="$PM_PACKAGES_ROOT/7za/$PM_7za_VERSION" +export PM_7za_PATH="$PM_PACKAGES_ROOT/chk/7za/$PM_7za_VERSION" if [ ! -f "$PM_7za_PATH" ]; then - $PM_PYTHON "$PM_MODULE" install 7za $PM_7za_VERSION -r packman:s3 + $PM_PYTHON "$PM_MODULE" install 7za $PM_7za_VERSION -r packman:cloudfront if [ "$?" -ne 0 ]; then echo "Failure while installing required 7za package" exit 1 @@ -78,7 +78,7 @@ fi # Generate temporary file name for environment variables: PM_VAR_PATH=`mktemp -u -t tmp.XXXXX.$$.pmvars` -$PM_PYTHON "$PM_MODULE" $* --var-path="$PM_VAR_PATH" +$PM_PYTHON -u "$PM_MODULE" $* --var-path="$PM_VAR_PATH" exit_code=$? # Export the variables if the file was used and remove the file: if [ -f "$PM_VAR_PATH" ]; then |