diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-12-12 14:25:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-12 07:25:39 +0100 |
commit | b981f3eeb73bc2a8e068cf7dc7cf54c4362bf19e (patch) | |
tree | 589c422516b8c06b2202a3d48c960cbc66188dc9 /tests/cpp | |
parent | 5917c2d5b7bda82a8feb521890e255cdf08cf718 (diff) | |
download | Nim-b981f3eeb73bc2a8e068cf7dc7cf54c4362bf19e.tar.gz |
ship a modern nimble with lock files support (#21061)
* change `include genode/env` to an import ref https://github.com/nim-lang/Nim/commit/0b262e9496387d5e8adc0c5f6020b3f3300e8f79#diff-8718bd20d8f61d6638d3d64b19efc31bcd40a6d5be8215b2a1f0b75ed93e8d56 * fixes comments * ship a modern nimble with lock files support * not sure whether the latest nimble has a regression now I'm trying 0.14.0 * change `pkgs` to `pkgs2` (#21073) * overwrite problematic packages * Apply suggestions from code review * Apply suggestions from code review * Apply suggestions from code review
Diffstat (limited to 'tests/cpp')
-rw-r--r-- | tests/cpp/tasync_cpp.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cpp/tasync_cpp.nim b/tests/cpp/tasync_cpp.nim index 696274ec4..3f4ec6208 100644 --- a/tests/cpp/tasync_cpp.nim +++ b/tests/cpp/tasync_cpp.nim @@ -1,7 +1,7 @@ discard """ targets: "cpp" output: "hello" - cmd: "nim cpp --clearNimblePath --nimblePath:build/deps/pkgs $file" + cmd: "nim cpp --clearNimblePath --nimblePath:build/deps/pkgs2 $file" """ # bug #3299 |