diff options
author | Marvin Borner | 2020-03-27 16:02:37 +0100 |
---|---|---|
committer | Marvin Borner | 2020-03-27 16:02:37 +0100 |
commit | 75bc75525541b6cb3c5b0062fbfc0e55ebf151b8 (patch) | |
tree | f9b044d0aa0cf0cc9a2fa978e523e763bd2dec3e /run | |
parent | e5559ad7a555b6f579bda0c6007d61d7a03ae2b9 (diff) |
Shellchecking for the win!
Diffstat (limited to 'run')
-rwxr-xr-x | run | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -152,10 +152,10 @@ make_sync() { rm tags compile_commands.json ctags -R --exclude=.git --exclude=build --exclude=iso --exclude=cross . mkdir -p cmake - cd cmake + cd cmake || exit cmake .. >/dev/null mv compile_commands.json .. - cd .. + cd .. || exit } make_tidy() { |