1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 19:44:45 +00:00
Files
dotdrop/dotdrop.sh
2017-03-14 21:06:30 +01:00

15 lines
276 B
Bash
Executable File

#!/bin/bash
# author: deadc0de6 (https://github.com/deadc0de6)
# Copyright (c) 2017, deadc0de6
args="$@"
cur=`dirname $(readlink -f $0)`
opwd=`pwd`
bin="${cur}/dotdrop/dotdrop.py"
# run dotdrop
cfg="${cur}/config.yaml"
cd ${cur}
python3 ${bin} --cfg=${cfg} $args
cd ${opwd}