Skip to content
This repository has been archived by the owner on May 15, 2019. It is now read-only.

Commit

Permalink
put command in the right place
Browse files Browse the repository at this point in the history
  • Loading branch information
ddollar committed Sep 21, 2011
1 parent 4a4ae59 commit d1667bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vulcan/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ class Vulcan::CLI < Thor
def build
app = read_config[:app] || "need a server first, use vulcan create"

command = options[:command] || "./configure --prefix #{prefix} && make install"
name = options[:name] || File.basename(Dir.pwd)
output = options[:output] || "/tmp/#{name}.tgz"
prefix = options[:prefix] || "/app/vendor/#{name}"
source = options[:source] || Dir.pwd
command = options[:command] || "./configure --prefix #{prefix} && make install"
server = URI.parse(ENV["MAKE_SERVER"] || "http://#{app}.herokuapp.com")

Dir.mktmpdir do |dir|
Expand Down

0 comments on commit d1667bf

Please sign in to comment.