Skip to content

Commit

Permalink
chore: update .gitignore, .build.sh and build.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyShorokhov committed Dec 9, 2024
1 parent a45038a commit 95215ea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
venv/
**/*.inc
!**/redm*
!**/scripting/ReDeathmatch/**
4 changes: 2 additions & 2 deletions .vscode/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ if [ "$needCopyOther" ]; then

# Copy directories without confirmation with green messages
print_color $GREEN " - Copying configs..."
cp -an $srcDir/configs/* $destinationDir/configs/
cp -r $srcDir/configs/* $destinationDir/configs/
print_color $GREEN " - Copying data..."
cp -an $srcDir/data/* $destinationDir/data/
cp -r $srcDir/data/* $destinationDir/data/
fi
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
{
"type": "shell",
"label": "Run HLDS container",
"command": "docker run --rm -ti -p 26900-27020:26900-27020/udp redeathmatch:${input:mod} ./hlds_run -game ${input:mod} +maxplayers 32 -bots +ip 0.0.0.0 -port 27016 +map de_dust2",
"command": "docker run --rm -ti -p 27016:27016/udp redeathmatch:${input:mod} ./hlds_run -game ${input:mod} +maxplayers 32 -bots +ip 0.0.0.0 -port 27016 +map de_dust2",
"dependsOn": [
"Build ReDeathmatch Image"
],
Expand Down

0 comments on commit 95215ea

Please sign in to comment.