diff options
author | 2024-03-07 13:07:59 +0800 | |
---|---|---|
committer | 2024-03-07 13:19:06 +0800 | |
commit | 7e85ab6f9e7114ba05264005172e41fb1c47532c (patch) | |
tree | 47f530ea33faf42c63b67bc25ac387e54e20b2a6 /build.sh | |
parent | 644f678387cd81a87bd0c73ea0123c825bc99e59 (diff) | |
download | calendar-7e85ab6f9e7114ba05264005172e41fb1c47532c.tar.gz calendar-7e85ab6f9e7114ba05264005172e41fb1c47532c.zip |
Change into cmake
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/build.sh b/build.sh deleted file mode 100755 index 5182390..0000000 --- a/build.sh +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | #!/bin/bash | ||
2 | # Exit with nonzero exit code if anything fails | ||
3 | set -e | ||
4 | cd src | ||
5 | make | ||
6 | # if main exists in ../, remove it | ||
7 | if [ -f ../main ]; then | ||
8 | rm ../main | ||
9 | fi | ||
10 | # move main to ../ | ||
11 | cp main ../main | ||