···3# Always run steamcmd in the user's Steam root.
4STEAMROOT=@steamRoot@
50006# Create a facsimile Steam root if it doesn't exist.
7if [ ! -e "$STEAMROOT" ]; then
8 mkdir -p "$STEAMROOT"/{appcache,config,logs,Steamapps/common}
···3# Always run steamcmd in the user's Steam root.
4STEAMROOT=@steamRoot@
56+# Add coreutils to PATH for mkdir, ln and cp used below
7+PATH=$PATH${PATH:+:}@coreutils@/bin
8+9# Create a facsimile Steam root if it doesn't exist.
10if [ ! -e "$STEAMROOT" ]; then
11 mkdir -p "$STEAMROOT"/{appcache,config,logs,Steamapps/common}