Skip to content

Commit

Permalink
Fix check for PLATFORM env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnwalraven committed Jul 23, 2015
1 parent 10fe112 commit 1d862f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generate-dev-bundle.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $MONGO_VERSION = "2.6.7"
$NODE_VERSION = "0.10.40"

# take it form the environment if exists
if (Test-Path variable:global:PLATFORM) {
if (Test-Path env:PLATFORM) {
$PLATFORM = (Get-Item env:PLATFORM).Value
}

Expand Down

0 comments on commit 1d862f1

Please sign in to comment.