Skip to content

Commit 14246c8

Browse files
authored
Merge pull request #136 from codecrafters-io/upgrade-vcpkg
CC-2015: Fix vcpkg caching issue; Update C/C++ Dockerfiles to gcc:15.2.0-trixie
2 parents 6ebaaf9 + 9e5e746 commit 14246c8

File tree

18 files changed

+3003
-24
lines changed

18 files changed

+3003
-24
lines changed

compiled_starters/c/.codecrafters/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
set -e # Exit on failure
1010

11-
exec $(dirname $0)/build/interpreter "$@"
11+
exec $(dirname "$0")/build/interpreter "$@"

compiled_starters/c/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Time to move on to the next stage!
4343

4444
Note: This section is for stages 2 and beyond.
4545

46-
1. Ensure you have `gcc` installed locally
46+
1. Ensure you have `cmake` installed locally
4747
2. Run `./your_program.sh` to run your program, which is implemented in
4848
`src/main.c`.
4949
3. Commit your changes and run `git push origin master` to submit your solution

compiled_starters/c/your_program.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ set -e # Exit early if any commands fail
2222
#
2323
# - Edit this to change how your program runs locally
2424
# - Edit .codecrafters/run.sh to change how your program runs remotely
25-
exec $(dirname $0)/build/interpreter "$@"
25+
exec $(dirname "$0")/build/interpreter "$@"

compiled_starters/cpp/.codecrafters/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
set -e # Exit on failure
1010

11-
exec $(dirname $0)/build/interpreter "$@"
11+
exec $(dirname "$0")/build/interpreter "$@"

0 commit comments

Comments
 (0)