diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-02-27 11:23:49 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-02-27 11:23:49 -0500 |
commit | 3f53904b14eb5b9594a4f81c41ed96395dd50ef4 (patch) | |
tree | 97c753b8c60550fe9f3318f7786e8e3c48220b5c /hooks | |
parent | a7c288b10f197818b2ad233a852268c0f160d8e3 (diff) |
Tidy up
Diffstat (limited to 'hooks')
-rwxr-xr-x | hooks/after_prepare/gen_resources | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/hooks/after_prepare/gen_resources b/hooks/after_prepare/gen_resources index c98c905..b8a2020 100755 --- a/hooks/after_prepare/gen_resources +++ b/hooks/after_prepare/gen_resources @@ -1,7 +1,4 @@ #! /usr/bin/env bash IFS=, platforms=($CORDOVA_PLATFORMS) - -resources=("${platforms[@]/%/-resources}") -make "${resources[@]/#/clean-}" -make "${resources[@]}" +make "${platforms[@]/%/-resources}" |