mirror of
https://github.com/samsonjs/Mojo.Ext.git
synced 2026-03-25 09:25:46 +00:00
Now runs from a symlink.
This commit is contained in:
parent
de155b9cc0
commit
b00fb54299
1 changed files with 3 additions and 1 deletions
|
|
@ -1,5 +1,6 @@
|
|||
#!/usr/bin/env ruby
|
||||
|
||||
require 'pathname'
|
||||
require 'rubygems'
|
||||
require 'json'
|
||||
require 'fileutils'
|
||||
|
|
@ -64,7 +65,8 @@ def main
|
|||
end
|
||||
|
||||
def mojo_ext_path
|
||||
File.expand_path(File.join('..', 'src'), __FILE__)
|
||||
this_file = __FILE__
|
||||
path = File.expand_path(File.join('..', 'src'), Pathname.new(this_file).realpath)
|
||||
end
|
||||
|
||||
def target_mojo_ext_path
|
||||
|
|
|
|||
Loading…
Reference in a new issue