mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 20:19:46 +00:00
14 lines
244 B
Bash
Executable File
14 lines
244 B
Bash
Executable File
#!/bin/bash
|
|
# author: deadc0de6 (https://github.com/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}
|