mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
8 lines
100 B
Bash
Executable File
8 lines
100 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ ! -e "$1" ] ; then
|
|
git annex get "$1"
|
|
else
|
|
git annex drop "$1"
|
|
fi
|