Skip to content

Commit 2bb3c03

Browse files
committed
Move scripts in etc into etc/scripts
Since there are more items in `etc` now, this may help to find things more easily.
1 parent 61bbbf8 commit 2bb3c03

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ jobs:
533533
os:
534534
- ubuntu-latest
535535
# We consider this script read-only and its effect is the same everywhere.
536-
# However, when changes are made to `etc/copy-packetline.sh`, re-enable the other platforms for testing.
536+
# However, when changes are made to `etc/scripts/copy-packetline.sh`, re-enable the other platforms for testing.
537537
# - macos-latest
538538
# - windows-latest
539539

@@ -554,7 +554,7 @@ jobs:
554554
git status
555555
git diff --exit-code
556556
- name: Regenerate gix-packetline-blocking/src
557-
run: etc/copy-packetline.sh
557+
run: etc/scripts/copy-packetline.sh
558558
- name: Check that gix-packetline-blocking/src was already up to date
559559
run: |
560560
set -x
File renamed without changes.
File renamed without changes.
File renamed without changes.

justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ cross-test-android: (cross-test 'armv7-linux-androideabi' '--no-default-features
239239

240240
# Run `cargo diet` on all crates to see that they are still in bounds
241241
check-size:
242-
etc/check-package-size.sh
242+
etc/scripts/check-package-size.sh
243243

244244
# Report the Minimum Supported Rust Version (the `rust-version` of `gix`) in X.Y.Z form
245245
msrv: (query-meta '''
@@ -295,11 +295,11 @@ check-mode:
295295
296296
# Delete `gix-packetline-blocking/src` and regenerate from `gix-packetline/src`
297297
copy-packetline:
298-
etc/copy-packetline.sh
298+
etc/scripts/copy-packetline.sh
299299
300300
# Get the unique `v*` tag at `HEAD`, or fail with an error
301301
unique-v-tag:
302-
etc/unique-v-tag.sh
302+
etc/scripts/unique-v-tag.sh
303303
304304
# Trigger the `release.yml` workflow on the current `v*` tag
305305
run-release-workflow repo='':

0 commit comments

Comments
 (0)