This repository was archived by the owner on Mar 12, 2024. It is now read-only.
File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -14,5 +14,5 @@ if errorlevel 1 (
14
14
15
15
:FAKEINSTALLED
16
16
17
- packages\FAKE\tools\FAKE.exe build .fsx %*
17
+ packages\FAKE\tools\FAKE.exe install .fsx %*
18
18
Original file line number Diff line number Diff line change 1
1
// include Fake lib
2
- #r @ " packages\ FAKE\ tools\ FakeLib.dll"
2
+ #r " packages/ FAKE/ tools/ FakeLib.dll"
3
3
open Fake
4
4
open System
5
5
open System.IO
6
6
open System.Net
7
7
open System.Text .RegularExpressions
8
8
9
- let homePath =
9
+ let homeVimPath =
10
10
if Environment.OSVersion.Platform = PlatformID.Unix || Environment.OSVersion.Platform = PlatformID.MacOSX then
11
- Environment.GetEnvironmentVariable( " HOME" )
12
- else Environment.ExpandEnvironmentVariables( " %HOMEDRIVE%%HOMEPATH%" )
11
+ Environment.GetEnvironmentVariable( " HOME" ) @@ " .vim "
12
+ else Environment.ExpandEnvironmentVariables( " %HOMEDRIVE%%HOMEPATH%" ) @@ " vimfiles "
13
13
14
- let vimInstallDir = homePath @@ " vimfiles/ bundle/fsharpbinding-vim"
14
+ let vimInstallDir = homeVimPath @@ " bundle/fsharpbinding-vim"
15
15
16
16
let vimBinDir = __ SOURCE_ DIRECTORY__ @@ " ftplugin/bin"
17
17
let ftpluginDir = __ SOURCE_ DIRECTORY__ @@ " ftplugin"
Original file line number Diff line number Diff line change 1
- if [ -e ./packages/FAKE/tools/Fake.exe ]
1
+ if ! [ -e ./packages/FAKE/tools/Fake.exe ]
2
2
then
3
3
mono paket.bootstrapper.exe
4
4
exit_code=$?
13
13
fi
14
14
fi
15
15
16
- mono packages/FAKE/tools/FAKE.exe $@ --fsiargs -d:MONO build .fsx
16
+ mono packages/FAKE/tools/FAKE.exe $@ --fsiargs -d:MONO install .fsx
You can’t perform that action at this time.
0 commit comments