9 lines
195 B
Bash
Executable file
9 lines
195 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
. "./personal.sh";
|
|
. "../Software/OpenConnect/install.sh";
|
|
yay --noconfirm -Syu jdk17-temurin;
|
|
yay --noconfirm -Syu gradle;
|
|
|
|
popd > /dev/null;
|