mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
11 lines
254 B
Plaintext
11 lines
254 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -x
|
||
|
set -e
|
||
|
|
||
|
# Make the `zig version` number consistent.
|
||
|
# This will affect the cmake commands that follow.
|
||
|
# This is in its own script because git does not support this command
|
||
|
# being run concurrently with itself.
|
||
|
git config core.abbrev 9
|