10 lines
278 B
Bash
Executable file
10 lines
278 B
Bash
Executable file
#!/bin/bash
|
|
|
|
git config --get remote.origin.url|fgrep -q bkuhn/config.git
|
|
if [ $? -ne 0 ]; then
|
|
echo "Run this in the actual directory where the Git checkout of the config is"
|
|
exit 1
|
|
fi
|
|
|
|
# Conkeror is a deprecated program
|
|
#/bin/ln -sf `pwd`/conkerorrc $HOME/.conkerorrc
|