6 lines
149 B
Bash
Executable file
6 lines
149 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
yay --noconfirm -Syu rclone;
|
|
source "../../../Common/Config/rclone/install.sh";
|
|
popd > /dev/null;
|