f96485f950
Somehow strip would return 1 when a directory is passed, so we have to wrap it in a script to avoid the error.
6 lines
60 B
Bash
Executable file
6 lines
60 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Ignore errors from strip.
|
|
strip "$@"
|
|
|
|
exit 0
|