15 lines
400 B
Bash
Executable File
15 lines
400 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")"
|
|
source src/lib.sh
|
|
|
|
std::wprintln "These dependencies are OPTIONAL because they might depend on older versions of std, having recursion problems"
|
|
# more like recurring down in history until the original commit, but yeah
|
|
|
|
set -x
|
|
|
|
[ -d vendor/stdlib ] ||
|
|
git clone --recursive https://git.javalsai.tuxcord.net/shell/stdlib.git vendor/stdlib
|