Skip to content

Commit 811342e

Browse files
committed
fix: ci
1 parent aed13e5 commit 811342e

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

Project.swift

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,17 @@ let project = Project(
2828
zip -r "Waifu2X.zip" "Waifu2X.app"
2929
""",
3030
name: "ZIP",
31-
outputPaths: ["Waifu2X.zip"]
31+
outputPaths: ["${BUILT_PRODUCTS_DIR}/Waifu2X.zip"]
3232
),
3333
.post(
3434
script: """
3535
export PATH="/usr/local/bin:/opt/homebrew/bin:$PATH"
3636
cd "${BUILT_PRODUCTS_DIR}"
3737
rm -rf "Waifu2X.dmg"
38-
create-dmg \\
39-
--volname Waifu2X \\
40-
--background "${SRCROOT}/Waifu2X/dmg/dmg-background.tiff" \
41-
--window-pos 200 120 \\
42-
--window-size 660 420 \\
43-
--text-size 12 \\
44-
--icon-size 160 \\
45-
--icon Waifu2X.app 180 170 \\
46-
--app-drop-link 480 170 \
47-
Waifu2X.dmg \
48-
Waifu2X.app
38+
create-dmg --volname Waifu2X --background "${SRCROOT}/Waifu2X/dmg/dmg-background.tiff" --window-pos 200 120 --window-size 660 420 --text-size 12 --icon-size 160 --icon Waifu2X.app 180 170 --app-drop-link 480 170 Waifu2X.dmg Waifu2X.app
4939
""",
5040
name: "DMG",
51-
outputPaths: ["Waifu2X.dmg"]
41+
outputPaths: ["${BUILT_PRODUCTS_DIR}/Waifu2X.dmg"]
5242
),
5343
] : [],
5444
dependencies: [

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ brew install tuist cmake git-lfs
9393

9494

9595
# clone this repo first
96-
git clone --recursive --depth=1 https://github.com/EETagent/waifu2x-ncnn-vulkan-macos
96+
git clone --recurse-submodules --depth=1 https://github.com/EETagent/waifu2x-ncnn-vulkan-macos
9797

9898
# change directory
9999
cd waifu2x-ncnn-vulkan-macos

0 commit comments

Comments
 (0)