diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-11-20 06:59:39 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-11-20 06:59:39 +0100 |
commit | 9ae73081f438595c95aa836a62c7ae5465748d70 (patch) | |
tree | e10d8df993294770afb20f218e9fbb0d50147d33 /cedilla | |
parent | due not notify about a package being unfetchable twice, now that running this is automated. (diff) | |
download | aur-packages-9ae73081f438595c95aa836a62c7ae5465748d70.tar.gz aur-packages-9ae73081f438595c95aa836a62c7ae5465748d70.tar.bz2 aur-packages-9ae73081f438595c95aa836a62c7ae5465748d70.tar.xz |
gitignore improvment + remove file to be downloaded if it already exists
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | cedilla/.gitignore | 1 | ||||
-rwxr-xr-x | cedilla/watch | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/cedilla/.gitignore b/cedilla/.gitignore new file mode 100644 index 0000000..7f65160 --- /dev/null +++ b/cedilla/.gitignore @@ -0,0 +1 @@ +/NEWS.text diff --git a/cedilla/watch b/cedilla/watch index f319765..b59d99b 100755 --- a/cedilla/watch +++ b/cedilla/watch @@ -1,5 +1,6 @@ #!/bin/sh +[ -f 'NEWS.text' ] && rm 'NEWS.text' wget 'http://www.pps.univ-paris-diderot.fr/~jch/software/cedilla/NEWS.text' >/dev/null 2>/dev/null if [ $? = 0 ]; then [ -f unfetchable ] && rm unfetchable |