feat: bat
rename
#95
-
Is your feature request related to a problem? Please describe. This application overlaps to a different executable: https://github.com/sharkdp/bat an enhanced cat command. Describe the solution you'd like Is there somehow a way to instruct the builder to generate a different target executable? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You can modify the following line in the Makefile or just use Line 24 in bd230b8 - GOOS=linux GOARCH=amd64 go build -ldflags=$(FLAGS) -o=./bin/bat .
+ GOOS=linux GOARCH=amd64 go build -ldflags=$(FLAGS) -o=./bin/your_preferred_name . Similarly, if you're using Lines 26 to 32 in bd230b8 |
Beta Was this translation helpful? Give feedback.
-
This |
Beta Was this translation helpful? Give feedback.
You can modify the following line in the Makefile or just use
mv
to rename it after building it.bat/Makefile
Line 24 in bd230b8
Similarly, if you're using
make install
, change any occurrence ofbat
under that Make target to your preferred name.bat/Makefile
Lines 26 to 32 in bd230b8