diff options
author | Karlson2k <k2k@narod.ru> | 2021-04-28 21:24:58 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-28 21:24:58 +0300 |
commit | 1e9e4aa049e73a002b67ca8a7c0a6a277bd3c233 (patch) | |
tree | 5402d3bd24902418b1e354bbd411c219abea5a1d /tools | |
parent | 63910a3f06b9d9661b67e90bb7e56dd8c7b25837 (diff) | |
parent | 60ce925dc9e993d84087d4919fa1fa8a214a3f5e (diff) |
Merge pull request #19157 from Karlson2k/win32_deps_fix1
[Win] Minor fix for buildhelpers.sh
Diffstat (limited to 'tools')
-rw-r--r-- | tools/buildsteps/windows/buildhelpers.sh | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tools/buildsteps/windows/buildhelpers.sh b/tools/buildsteps/windows/buildhelpers.sh index ae0d33f582..2a059de62b 100644 --- a/tools/buildsteps/windows/buildhelpers.sh +++ b/tools/buildsteps/windows/buildhelpers.sh @@ -167,14 +167,11 @@ do_clean_get() { PATH_CHANGE_REV_FILENAME=".last_success_revision" #hash a dir based on the git revision and $TRIPLET -#param1 path to be hashed +#params paths to be hashed function getBuildHash () { - local checkPath - checkPath="$1" - shift 1 local hashStr - hashStr="$(git rev-list HEAD --max-count=1 -- $checkPath $@)" + hashStr="$(git rev-list HEAD --max-count=1 -- $@)" hashStr="$hashStr $@ $TRIPLET" echo $hashStr } |