We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60c7ab5 commit 3375d02Copy full SHA for 3375d02
.github/workflows/rake.yml
@@ -38,5 +38,6 @@ jobs:
38
- name: Run RSpecs
39
working-directory: ./ruby
40
run: |
41
+ pip install regex
42
bundle install --with=jsexec
43
bundle exec rspec
lib/interscript/compiler/python.rb
@@ -308,6 +308,7 @@ def load
308
self.class.ctx = PyCall.import_module("interscript")
309
end
310
#puts @code
311
+ Dir.mkdir("#{python_src_path}/interscript/maps") rescue nil
312
File.write("#{python_src_path}/interscript/maps/#{@map.name}.py", @code)
313
self.class.ctx.load_map(@map.name)
314
0 commit comments