Skip to content

Commit 46dd840

Browse files
committed
Fix naming of build target in shell script
1 parent 72a3c12 commit 46dd840

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

compiled_starters/cpp/your_shell.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ set -e
99
# vcpkg & cmake are required.
1010
cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE=${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake
1111
cmake --build ./build
12-
exec ./build/server "$@"
12+
exec ./build/shell "$@"

solutions/cpp/01-oo8/code/your_shell.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ set -e
99
# vcpkg & cmake are required.
1010
cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE=${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake
1111
cmake --build ./build
12-
exec ./build/server "$@"
12+
exec ./build/shell "$@"

starter_templates/cpp/your_shell.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ set -e
99
# vcpkg & cmake are required.
1010
cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE=${VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake
1111
cmake --build ./build
12-
exec ./build/server "$@"
12+
exec ./build/shell "$@"

0 commit comments

Comments
 (0)