diff --git a/.travis.yml b/.travis.yml index 54ff84d254e..0133495b50f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,6 +39,7 @@ script: - source $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}/byond/bin/byondsetup - cp config/example/* config/ - scripts/dm.sh -DUNIT_TEST baystation12.dme + - grep "0 warnings" build_log.txt - DreamDaemon baystation12.dmb -invisible -trusted -core 2>&1 | tee log.txt - grep "All Unit Tests Passed" log.txt - (! grep "runtime error:" log.txt) diff --git a/code/modules/modular_computers/computers/item/modular_computer.dm b/code/modules/modular_computers/computers/item/modular_computer.dm index 42eaa788915..30f76d518bf 100644 --- a/code/modules/modular_computers/computers/item/modular_computer.dm +++ b/code/modules/modular_computers/computers/item/modular_computer.dm @@ -616,4 +616,4 @@ ui_updated_needed = 1 if(ui_updated_needed) - update_uis \ No newline at end of file + update_uis() diff --git a/scripts/dm.sh b/scripts/dm.sh index e8985cdfc8c..dda127e27e8 100755 --- a/scripts/dm.sh +++ b/scripts/dm.sh @@ -44,7 +44,7 @@ if [[ $DM == "" ]]; then exit 3 fi -"$DM" $dmepath.mdme +"$DM" $dmepath.mdme > build_log.txt retval=$? mv $dmepath.mdme.dmb $dmepath.dmb