2023-12-29 09:23:31 -05:00
|
|
|
#!/bin/bash
|
2023-12-01 09:50:45 -05:00
|
|
|
|
|
|
|
# first install babashka which is required for the other scripts
|
|
|
|
xbps-install -y babashka;
|
|
|
|
|
2023-12-29 09:23:31 -05:00
|
|
|
# gets the path of this script
|
|
|
|
__dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
|
2023-12-01 09:50:45 -05:00
|
|
|
./packages/packages.clj;
|
2023-12-29 09:23:31 -05:00
|
|
|
./configs/configs.clj ${__dir};
|