* refactor(appdmg): make dmgs with dmgbuild * fix(appdmg.sh): typo * refactor(appdmg.sh): don't generate config on the fly * fix(dmgbuild): icon file * fix(gitignore): dmgbuild settings * chore(resources): update readme with new files * chore(resources/macos): add missing newline
10 lines
198 B
Bash
10 lines
198 B
Bash
#!/bin/bash
|
|
set -ex
|
|
|
|
if [ ! -e "src/api/api.h" ]; then
|
|
echo "Please run this script from the root directory of Lite XL."
|
|
exit 1
|
|
fi
|
|
|
|
dmgbuild -s resources/macos/lite-xl-dmg.py "Lite XL" "$1.dmg"
|