8 lines
143 B
Bash
Executable File
8 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
if [[ "$(git rev-parse --abbrev-ref HEAD)" == "main" ]]; then
|
|
echo "Create a new branch first!"
|
|
exit 1;
|
|
fi
|
|
|
|
echo "running"
|