You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
325 B
10 lines
325 B
#!/bin/sh |
|
|
|
set -x |
|
|
|
SAVE_DIR="$(mktemp -d)" |
|
ln -s "${PWD}/demo_0_reference_spawn_0_sv" "${SAVE_DIR}/" |
|
ln -s "${PWD}/demo_0.dmo" "${SAVE_DIR}/" |
|
cp -r "${PWD}/spawn_0_sv" "${SAVE_DIR}/" |
|
./devilutionx --diablo --spawn --demo 0 --timedemo --save-dir "$SAVE_DIR" --data-dir ~/.local/share/diasurgical/devilution |
|
rm -rf "$SAVE_DIR"
|
|
|