Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
Update node stuff to work with node 13
Browse files Browse the repository at this point in the history
  • Loading branch information
jariz committed Jan 17, 2020
1 parent c7c2550 commit 72199bd
Show file tree
Hide file tree
Showing 6 changed files with 337 additions and 451 deletions.
2 changes: 2 additions & 0 deletions Akku.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -946,6 +946,7 @@
DEVELOPMENT_TEAM = JHKDY4UQ72;
INFOPLIST_FILE = Akku/Info.plist;
MACOSX_DEPLOYMENT_TARGET = 10.10;
MARKETING_VERSION = "0.1.0-beta.10";
PRODUCT_BUNDLE_IDENTIFIER = io.jari.Akku;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -964,6 +965,7 @@
DEVELOPMENT_TEAM = JHKDY4UQ72;
INFOPLIST_FILE = Akku/Info.plist;
MACOSX_DEPLOYMENT_TARGET = 10.10;
MARKETING_VERSION = "0.1.0-beta.10";
PRODUCT_BUNDLE_IDENTIFIER = io.jari.Akku;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
2 changes: 1 addition & 1 deletion Akku/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.1.0-beta.10</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>0.1.0-beta.10</string>
<key>LSApplicationCategoryType</key>
Expand Down
4 changes: 2 additions & 2 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ DEPENDENCIES:
- SwiftyBeaver

SPEC REPOS:
https://github.com/cocoapods/specs.git:
https://github.com/CocoaPods/Specs.git:
- EMCLoginItem
- Sparkle
- SwiftyBeaver
Expand All @@ -36,4 +36,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: c4866ed69c45fd78b7713c9d8b1db4902b65862b

COCOAPODS: 1.7.5
COCOAPODS: 1.8.4
18 changes: 11 additions & 7 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
echo "🔋 building a Akku release DMG... 🔋" && \
echo "(going to assume node.js is installed)" && \
./install_amimono_fork.sh && \
rm -R build/ && \
pod install && \
npm install && \
xcodebuild -workspace Akku.xcworkspace -scheme Akku -configuration Release -derivedDataPath build | xcpretty && \
#!/usr/bin/env sh

set -e

echo "🔋 building a Akku release DMG... 🔋"
echo "(going to assume node.js is installed)"
sudo ./install_amimono_fork.sh;
rm -rf build/
pod install
npm install
xcodebuild -workspace Akku.xcworkspace -scheme Akku -configuration Release -derivedDataPath build | xcpretty
npx appdmg dmg-resources/release.json build/Akku.dmg
Loading

0 comments on commit 72199bd

Please sign in to comment.