8 lines
175 B
Bash
Executable file
8 lines
175 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
. "../Software/base-devel/install.sh";
|
|
. "../Config/pacman/install.sh";
|
|
. "../Software/yay/install.sh";
|
|
|
|
popd > /dev/null;
|