Skip to content

Commit

Permalink
Allows rakelib to be in an external directory
Browse files Browse the repository at this point in the history
  • Loading branch information
charpi committed Jan 23, 2010
1 parent a9843e9 commit 274a3b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rakelib/erlang.rake
Expand Up @@ -130,7 +130,7 @@ namespace :erlang do
end

def run_script(script, parameters)
script_file = "rakelib/escripts/" + script
script_file = File.dirname(__FILE__) + "/escripts/" + script
#puts "#{ERL_TOP}/bin/escript #{script_file} #{parameters.join(' ')}"
sh "#{ERL_TOP}/bin/escript #{script_file} #{parameters.join(' ')}"
end
Expand Down

0 comments on commit 274a3b2

Please sign in to comment.