Created
September 3, 2010 21:19
-
-
Save jonforums/564589 to your computer and use it in GitHub Desktop.
devkitvars for PowerShell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# convenience script residing in the DevKit root dir used for | |
# manually configuring a PowerShell environment to use the | |
# DevKit for compiling native Ruby extensions | |
echo "Adding DevKit to PATH..." | |
$devkit = [System.IO.Path]::GetDirectoryName($MyInvocation.MyCommand.Definition) | |
$env:path = "$devkit\bin;$devkit\mingw\bin;$env:path" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment