MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

prevent napi stripping on darwin

+5 -1
+5 -1
.github/actions/build-project/action.yml
··· 145 145 MSYS2_PATH=$(cygpath "$RUNNER_TEMP/msys64/clang64/bin") 146 146 export PATH="$MSYS2_PATH:$PATH" 147 147 fi 148 - ${{ inputs.strip }} --strip-unneeded build/${{ inputs.binary_name }} 148 + if [[ "$RUNNER_OS" == "macOS" ]]; then 149 + ${{ inputs.strip }} -x build/${{ inputs.binary_name }} 150 + else 151 + ${{ inputs.strip }} --strip-unneeded build/${{ inputs.binary_name }} 152 + fi 149 153 150 154 - name: Bundle Windows DLLs 151 155 if: runner.os == 'Windows'