8 lines
294 B
Bash
Executable file
8 lines
294 B
Bash
Executable file
#!/bin/bash
|
|
author_file="_darcs/prefs/author"
|
|
if [ -f $author_file ]; then
|
|
rm -f $author_file
|
|
echo "N'utilisez pas de fichier $author_file"'!!'
|
|
echo "Utilisez plutot la variable DARCS_EMAIL ou un fichier ~/.darcs/author"
|
|
fi
|
|
/usr/scripts/bin/darcs/darcs-send-changes roots@crans.org
|