File tree 5 files changed +8
-8
lines changed
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 30
30
* .exe
31
31
* .out
32
32
* .app
33
- app /adder_app
33
+ app /gyt
34
34
tests /tests
35
35
build /** /*
36
36
Original file line number Diff line number Diff line change 1
- add_executable (adder_app adder_app .cpp)
2
- target_link_libraries (adder_app PRIVATE commands)
1
+ add_executable (gyt gyt .cpp)
2
+ target_link_libraries (gyt PRIVATE commands)
File renamed without changes.
Original file line number Diff line number Diff line change 4
4
5
5
## Command usage
6
6
7
- - ` ./adder_app init` - creates an empty repository
8
- - ` ./adder_app init -p [path]` - creates an empty repository on the specified path
7
+ - ` gyt init` - creates an empty repository
8
+ - ` gyt init -p [path]` - creates an empty repository on the specified path
9
9
10
10
## Implementation details
11
11
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ if [ "$1" == "-p" ]; then
10
10
fi
11
11
12
12
# remove old build if any
13
- if [ -f " app/adder_app " ]; then
14
- rm -rf app/adder_app
13
+ if [ -f " app/gyt " ]; then
14
+ rm -rf app/gyt
15
15
fi
16
16
17
17
# Print the selected build type
26
26
27
27
# symlink - so I can run it like gyt [arguments....]
28
28
sudo rm /usr/local/bin/gyt
29
- sudo ln -s " $( pwd) /app/adder_app " /usr/local/bin/gyt
29
+ sudo ln -s " $( pwd) /app/gyt " /usr/local/bin/gyt
You can’t perform that action at this time.
0 commit comments