Navigation Menu

Skip to content

Commit

Permalink
appveyor: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 22, 2017
1 parent ec182db commit 00d1847
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions appveyor.yml
Expand Up @@ -31,19 +31,18 @@ install:
# - choco install -y imdisk-toolkit
# - mkdir tmp
# - imdisk -a -t file -m tmp -o awe -s 1G -p "/fs:ntfs /q /y"
- ruby -r pp -e 'pp ENV'
- ps: |
$Env:GROONGA_VERSION = (Get-Content base_version)
if ($Env:APPVEYOR_REPO_TAG -eq "false") {
$Env:GROONGA_VERSION += "-" + $Env:APPVERYOR_REPO_COMMIT.Substring(0, 7)
$Env:GROONGA_VERSION += "-" + $Env:APPVEYOR_REPO_COMMIT.Substring(0, 7)
}
$Env:GROONGA_INSTALL_FOLDER = "groonga-" + $Env:GROONGA_VERSION
if ($Env:ARCH -eq "x86") {
$Env:GROONGA_INSTALL_FOLDER += "-x86"
} else {
$Env:GROONGA_INSTALL_FOLDER += "-x64"
}
$Env:FULL_GROONGA_INSTALL_FOLDER = $Env:APPVEYOR_BUILD_FOLDER% + "\" + $Env:GROONGA_INSTALL_FOLDER
$Env:FULL_GROONGA_INSTALL_FOLDER = $Env:APPVEYOR_BUILD_FOLDER + "\" + $Env:GROONGA_INSTALL_FOLDER
build_script:
- git submodule update --init
Expand Down

0 comments on commit 00d1847

Please sign in to comment.