mirror of
https://github.com/DerekK19/PDP-8-E-Simulator.git
synced 2024-10-31 14:08:29 +00:00
11 lines
322 B
Bash
Executable File
11 lines
322 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd build 2>/dev/null || ( echo "Please run this command in the dev root" && exit )
|
|
|
|
rm -rf 'PDP-8:E Simulator.app'
|
|
cp -rp 'Release-32bit/PDP-8:E Simulator.app' 'PDP-8:E Simulator.app'
|
|
|
|
find 'PDP-8:E Simulator.app' -perm +111 -type f -exec lipo -create "Release-32bit/{}" "Release-64bit/{}" -output {} \;
|
|
|
|
cd ..
|