electron/tools/posix/strip.sh
Cheng Zhao f96485f950 linux: Fix error when generating symbols.
Somehow strip would return 1 when a directory is passed, so we have to
wrap it in a script to avoid the error.
2014-08-11 11:08:29 +00:00

6 lines
60 B
Bash
Executable file

#!/bin/bash
# Ignore errors from strip.
strip "$@"
exit 0