Skip to content

Commit 5f23f1b

Browse files
committed
updated to latest upstream
1 parent b41c61e commit 5f23f1b

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
- name: Create zip
111111
run: |
112112
ls -alFR
113-
zip -r instead-cli.zip instead-cli/
113+
zip -r instead-cli.zip instead-cli/instead-cli/
114114
- name: Create release and upload artifacts
115115
env:
116116
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Makefile.common

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ all: instead-cli$(EXE)
1414
$(OBJ): %.o : instead/src/instead/%.c
1515
$(CC) -c $(<) $(I) $(CFLAGS) $(CPPFLAGS) -o $(@)
1616
update:
17-
cd instead && git checkout master && git pull
18-
cd metaparser && git checkout master && git pull
17+
git submodule update --recursive --remote
18+
git submodule foreach git checkout master
19+
git submodule foreach git pull origin master
1920

2021
instead-cli$(EXE): main.c $(OBJ)
2122
$(CC) $(CFLAGS) $(^) $(LDFLAGS) -o $(@)

instead

Submodule instead updated 79 files

metaparser

0 commit comments

Comments
 (0)