mirror of
https://github.com/electron/electron.git
synced 2026-01-25 23:38:18 -05:00
Somehow strip would return 1 when a directory is passed, so we have to wrap it in a script to avoid the error.
7 lines
60 B
Bash
Executable File
7 lines
60 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Ignore errors from strip.
|
|
strip "$@"
|
|
|
|
exit 0
|