Skip to content

Commit 0d24875

Browse files
committed
Fix Clover Package
1 parent 7b08a61 commit 0d24875

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Upload to Artifacts
4040
uses: actions/upload-artifact@v4
4141
with:
42-
name: Clover beta-${{ env.GIT_SHA }}
42+
name: Clover-GCC-14.1.0-${{ env.GIT_SHA }}
4343
path: |
4444
*.7z
4545
CloverV2*.zip

CloverPackage/Makefile

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ slimpkg2:
2222
slimpkg3:
2323
@${SRCROOT}/makepkg --nothemes --norc --nolegacy
2424

25-
#updatepo:
26-
# @${SRCROOT}/package/translate.sh --update-po
25+
updatepo:
26+
@${SRCROOT}/package/translate.sh --update-po
2727

2828
utils:
2929
@make -C "${SRCROOT}"/utils all
@@ -32,8 +32,6 @@ install:
3232
@make -C "${SRCROOT}"/utils install
3333

3434
clean:
35-
rm -rf sym obj dst
36-
#CloverPrefpane/build CloverUpdater/build
37-
38-
.PHONY: clean image iso pkg installer utils
35+
rm -rf sym obj dst CloverPrefpane/build CloverUpdater/build
3936

37+
.PHONY: clean image iso pkg installer updatepo utils

CloverPackage/makepkg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ echo "${revision}" > revision
5656
# Make the translation
5757
echo ""
5858
echo "========= Translating Resources ========"
59-
#./package/translate.sh || exit $?
59+
./package/translate.sh || exit $?
6060

6161
# Check that XCode is install properly
6262
xcode_path=$(/usr/bin/xcode-select --print-path 2>/dev/null)

CloverPackage/package/translate.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@ while [[ $# -gt 0 ]]; do
5858
done
5959

6060
TEMPLATES_DIR="Resources/templates"
61-
#CLOVER_UPDATER_DIR="../CloverUpdater"
62-
#CLOVER_PREFPANE_DIR="../CloverPrefpane"
61+
CLOVER_UPDATER_DIR="../CloverUpdater"
62+
CLOVER_PREFPANE_DIR="../CloverPrefpane"
6363
PODIR="po"
6464

6565
# Update CloverUpdater.strings
66-
#"$CLOVER_UPDATER_DIR"/translate_xib.sh --extract-only
66+
"$CLOVER_UPDATER_DIR"/translate_xib.sh --extract-only
6767

6868
# Update CloverPrefpane.strings
69-
#"$CLOVER_PREFPANE_DIR"/translate_xib.sh --extract-only
69+
"$CLOVER_PREFPANE_DIR"/translate_xib.sh --extract-only
7070
# Update Localizable.strings
71-
#"$CLOVER_PREFPANE_DIR"/translate_source.sh --extract-only
71+
"$CLOVER_PREFPANE_DIR"/translate_source.sh --extract-only
7272

7373
# Check if pot and po files need to be updated
7474
IFS=$'\n' # '

0 commit comments

Comments
 (0)