Adding routes for external packages on Windows according to the way moose/pharo are packaged.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2015-03-22 16:39:43 +00:00
parent 6e0230bcc9
commit d15167e118

View File

@ -66,8 +66,8 @@ GrafoscopioBrowser class >> configureSettings [
pandoc := (FileSystem disk workingDirectory parent / 'Platform' / 'Linux' / 'Programs' / 'Pandoc' / 'pandoc') fullName].
Smalltalk platform name = 'Win32'
ifTrue: [
fossil := (FileSystem disk workingDirectory parent / 'Platform' / 'Windows' / 'Programs' / 'Fossil' / 'fossil.exe') fullName.
pandoc := (FileSystem disk workingDirectory parent / 'Platform' / 'Windows' / 'Programs' / 'Pandoc' / 'pandoc.exe') fullName].
fossil := (FileSystem disk workingDirectory / 'Platform' / 'Windows' / 'Programs' / 'Fossil' / 'fossil.exe') fullName.
pandoc := (FileSystem disk workingDirectory / 'Platform' / 'Windows' / 'Programs' / 'Pandoc' / 'pandoc.exe') fullName].
]
{ #category : #'as yet unclassified' }