Skip to content

Commit

Permalink
chore: upgrade mk to include chdir output
Browse files Browse the repository at this point in the history
Previously:

```
$ just build-zips
rm -f ../scaffolding.zip && zip -q --symlinks -r ../scaffolding.zip .
rm -f ../external-module-template.zip && zip -q --symlinks -r ../external-module-template.zip .
rm -f ../scaffolding.zip && zip -q --symlinks -r ../scaffolding.zip .
rm -f ../build-template.zip && zip -q --symlinks -r ../build-template.zip .
rm -f ../build-template.zip && zip -q --symlinks -r ../build-template.zip .
rm -f ../main-work-template.zip && zip -q --symlinks -r ../main-work-template.zip .
rm -f ../external-module-template.zip && zip -q --symlinks -r ../external-module-template.zip .
rm -f ../scaffolding.zip && zip -q --symlinks -r ../scaffolding.zip .
rm -f ../scaffolding.zip && zip -q --symlinks -r ../scaffolding.zip .
rm -f ../scaffolding.zip && zip -q --symlinks -r ../scaffolding.zip .
```

Now:

```
$ just build-zips
cd jvm-runtime/java/scaffolding && rm -f ../scaffolding.zip && zip -q --symlinks -r ../scaffolding.zip .
cd go-runtime/compile/external-module-template && rm -f ../external-module-template.zip && zip -q --symlinks -r ../external-module-template.zip .
cd internal/projectinit/scaffolding && rm -f ../scaffolding.zip && zip -q --symlinks -r ../scaffolding.zip .
cd go-runtime/compile/build-template && rm -f ../build-template.zip && zip -q --symlinks -r ../build-template.zip .
cd python-runtime/compile/build-template && rm -f ../build-template.zip && zip -q --symlinks -r ../build-template.zip .
cd go-runtime/compile/main-work-template && rm -f ../main-work-template.zip && zip -q --symlinks -r ../main-work-template.zip .
cd python-runtime/compile/external-module-template && rm -f ../external-module-template.zip && zip -q --symlinks -r ../external-module-template.zip .
cd go-runtime/scaffolding && rm -f ../scaffolding.zip && zip -q --symlinks -r ../scaffolding.zip .
cd jvm-runtime/kotlin/scaffolding && rm -f ../scaffolding.zip && zip -q --symlinks -r ../scaffolding.zip .
cd python-runtime/scaffolding && rm -f ../scaffolding.zip && zip -q --symlinks -r ../scaffolding.zip .
```
  • Loading branch information
alecthomas committed Dec 19, 2024
1 parent c24e6fe commit 85b5bd4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion bin/mk

0 comments on commit 85b5bd4

Please sign in to comment.