diff options
Diffstat (limited to 'scripts/nativesdk-intercept/chgrp')
-rwxr-xr-x | scripts/nativesdk-intercept/chgrp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/nativesdk-intercept/chgrp b/scripts/nativesdk-intercept/chgrp index 30cc417d3a..f8ae84b8b3 100755 --- a/scripts/nativesdk-intercept/chgrp +++ b/scripts/nativesdk-intercept/chgrp | |||
@@ -14,7 +14,10 @@ real_chgrp = shutil.which('chgrp', path=path) | |||
14 | args = list() | 14 | args = list() |
15 | 15 | ||
16 | found = False | 16 | found = False |
17 | for i in sys.argv: | 17 | |
18 | args.append(real_chgrp) | ||
19 | |||
20 | for i in sys.argv[1:]: | ||
18 | if i.startswith("-"): | 21 | if i.startswith("-"): |
19 | args.append(i) | 22 | args.append(i) |
20 | continue | 23 | continue |