Skip to content
This repository was archived by the owner on Jun 26, 2025. It is now read-only.

Commit 94da315

Browse files
committed
fix: diffing but not actually
1 parent f2c3397 commit 94da315

File tree

1 file changed

+4
-1
lines changed
  • competition/13-time-traveler

1 file changed

+4
-1
lines changed
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/bash
22

3-
g++ --std=c++20 src/main.cpp -o time-traveler &&
3+
if [ ! -f time-traveler ]; then
4+
g++ --std=c++20 src/main.cpp -o time-traveler
5+
fi
6+
47
./time-traveler $1 $2

0 commit comments

Comments
 (0)