Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I made a batch file trying to setup rake/albacore environment on windows:

@echo off

echo Setting up rake environment for building

echo Installing Bundler
gem install bundler

echo Bundle Installing gems
bundle install

When I run this batch file (either double click or run inside a cmd window), only the first gem command is executed. The 'bundle install' is never called. Here is the output:

C:\>InstallGems.bat
Setting up rake environment for building
Installing Bundler
Successfully installed bundler-1.2.1
1 gem installed
Installing ri documentation for bundler-1.2.1...
Installing RDoc documentation for bundler-1.2.1...

C:\>

I have added 'pause' after the first 'gem install' command and it seems the 'pause' is never executed either.

Any idea?

share|improve this question
It is possible that Gem itself is a batch-file, or that the script is somehow aborting due to a error and not telling you about the error. – jeffreylin_ Nov 8 '12 at 0:34

1 Answer

Ahh, I figured it out: just add 'call' before each command.

@echo off

echo Setting up rake environment for building

echo Installing Bundler
call gem install bundler

echo Bundle Installing gems
call bundle install 
share|improve this answer
3  
seems gem is a batchfile itself. due to the way dos previously operated, for backwards compatibility, this behaviour is by design: stackoverflow.com/questions/11638705/… – Sean Cheshire Nov 7 '12 at 21:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.