diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2017-02-16 13:59:21 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2017-02-16 13:59:21 +0100 |
| commit | db6c17982eca27f1cdf59d2c384615af89a3d81e (patch) | |
| tree | a26b16e335d64f49269e785f3f17dafccb5ccb6d | |
| parent | a45f65884353815f1bb8d157fd6caa0a31ccb297 (diff) | |
| download | vis-db6c17982eca27f1cdf59d2c384615af89a3d81e.tar.gz vis-db6c17982eca27f1cdf59d2c384615af89a3d81e.tar.xz | |
test/vis: patch Lua package.path to include source repository
This might fix the tests on systems where /proc/self/exe is not available.
| -rw-r--r-- | vis/visrc.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vis/visrc.lua b/vis/visrc.lua index 272815a..f9524fa 100644 --- a/vis/visrc.lua +++ b/vis/visrc.lua @@ -1,3 +1,4 @@ +package.path = '../../lua/?.lua;'..package.path dofile("../../lua/visrc.lua") vis.events.subscribe(vis.events.WIN_OPEN, function(win) |
