mirror of
https://github.com/CapsAdmin/wowozela.git
synced 2025-03-04 03:13:27 -05:00
19 lines
412 B
Bash
Executable File
19 lines
412 B
Bash
Executable File
#!/bin/bash
|
|
|
|
WORKSHOP_ID=108170491
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
gmad='../../../bin/gmad'
|
|
gmpublish='../../../gmpublish'
|
|
else
|
|
gmad='../../../bin/linux64/gmad'
|
|
gmpublish='../../../bin/linux64/gmpublish'
|
|
fi
|
|
|
|
export LD_LIBRARY_PATH="../../../bin/linux64/"
|
|
|
|
$gmad create -folder "./" -out "_TEMP.gma"
|
|
$gmpublish update -addon "_TEMP.gma" -id "$WORKSHOP_ID" -icon "icon.jpg"
|
|
|
|
rm ./_TEMP.gma
|