mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 10:01:40 +00:00
* Update beefman.dm * Update beefman.dm * xsaxsfvvvvvvvv * Update shaded_bloodsucker.dm * yeah that thing * FUCK you * Update hunting_contract.dm * dd * vdvdfv * Update monsterhunter_weapons.dm * Update whiterabbit.dm * onokkn * Update monsterhunter_weapons.dm * Update monsterhunter_weapons.dm * efe * Update whiterabbit.dm * yeaywa * Update red_rabbit.dmi * oihop * Update HunterContract.js * wonderland.dm * gs * dcd * Update rabbit.dmi * ass * fvd * Update paradox_rabbit.dm * f * Update tgstation.dme * Delete heartbeatmoon.dmi * shtntb * sed * sfe * Update monsterhunter_weapons.dm * cdc * Update wonderland.dm * dgrd * wef * b * pipkk * Update hunting_contract.dm * Update paradox_rabbit.dm * wr * Update worn_mask.dmi * some documenting * Update areas.dm * eg * Update white_rabbit.dm * Update HunterContract.js * s * Update weapons.dmi * Update weapons.dmi * Jack in the bomb * some signals * ui * h * y * music * Update wonderlandmusic.ogg * f * v * cleanups * g * a * t * y * g * a * o * first commit * Adding our stuff back in * k * Before procs * proc refs * carps * Fixes * shuttles * dumb dumb names * I hate windows I hate windows * I hate windows I hate windows * h * Selenestation has issues * Update monsterhunter_weapons.dm * eretics * Update weapons.dmi * Update monsterhunter_weapons.dm * g * kpop * r * m * grgr * Update simple_animal_freeze.dm * Update wonderland_apocalypse.dm * Update wonderland_apocalypse.dm * d * Update fulp_defines.dm * ff * Update wonderland.dmm * Update tgstation.dme * Update infil_objectives.dm * Update infil_objectives.dm * Update monsterhunter_weapons.dm * Update monsterhunter_event.dm * Update monsterhunter_event.dm * Update areas.dm * Update monsterhunter_event.dm * Update monsterhunter_weapons.dm * Step 0, version 2 * step 0.5 - version 2 * step 1 - version 2 * 2.5 version 2 * fix * Mapping * okay fine * more mapping * uuuuu hhhh * fixes * help me * hurry * I'm killing the mf that did access helpers on this map * Welp, we lost. * Or did we? --------- Co-authored-by: SmoSmoSmoSmok <95004236+SmoSmoSmoSmok@users.noreply.github.com> Co-authored-by: Pepsilawn <reisenrui@gmail.com> Co-authored-by: SgtHunk <68669754+SgtHunk@users.noreply.github.com>
52 lines
1.3 KiB
Bash
Executable File
52 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
#Run this in the repo root after compiling
|
|
#First arg is path to where you want to deploy
|
|
#creates a work tree free of everything except what's necessary to run the game
|
|
|
|
#second arg is working directory if necessary
|
|
if [[ $# -eq 2 ]] ; then
|
|
cd $2
|
|
fi
|
|
|
|
mkdir -p \
|
|
$1/_maps \
|
|
$1/icons/effects \
|
|
$1/icons/mob/clothing \
|
|
$1/icons/mob/inhands \
|
|
$1/icons/mob/simple \
|
|
$1/icons/obj \
|
|
$1/icons/runtime \
|
|
$1/sound/runtime \
|
|
$1/strings \
|
|
$1/tgui/public \
|
|
$1/tgui/packages/tgfont/dist
|
|
|
|
if [ -d ".git" ]; then
|
|
mkdir -p $1/.git/logs
|
|
cp -r .git/logs/* $1/.git/logs/
|
|
fi
|
|
|
|
cp tgstation.dmb tgstation.rsc $1/
|
|
cp -r _maps/* $1/_maps/
|
|
cp -r icons/effects/* $1/icons/effects/
|
|
cp -r icons/mob/clothing/* $1/icons/mob/clothing/
|
|
cp -r icons/mob/inhands/* $1/icons/mob/inhands/
|
|
cp -r icons/mob/simple/* $1/icons/mob/simple/
|
|
cp -r icons/obj/* $1/icons/obj/
|
|
cp -r icons/runtime/* $1/icons/runtime/
|
|
cp -r sound/runtime/* $1/sound/runtime/
|
|
cp -r strings/* $1/strings/
|
|
cp -r tgui/public/* $1/tgui/public/
|
|
cp -r tgui/packages/tgfont/dist/* $1/tgui/packages/tgfont/dist/
|
|
|
|
#remove .dm files from _maps
|
|
|
|
#this regrettably doesn't work with windows find
|
|
#find $1/_maps -name "*.dm" -type f -delete
|
|
|
|
#dlls on windows
|
|
if [ "$(uname -o)" = "Msys" ]; then
|
|
cp ./*.dll $1/
|
|
fi
|