Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cl-docker-images
ccl
Commits
773456e4
Commit
773456e4
authored
Oct 30, 2020
by
Eric Timmons
Browse files
Forgot a semicolon in Windows Dockerfile
parent
a954d94a
Changes
1
Hide whitespace changes
Inline
Side-by-side
1.12/windowsservercore/ltsc2019/windows-amd64/Dockerfile
View file @
773456e4
...
...
@@ -26,7 +26,7 @@ RUN $srcurl = ('https://github.com/Clozure/ccl/releases/download/v{0}/ccl-{0}-wi
RUN
$machineKey
=
[
Microsoft.Win32.Registry]::LocalMachine.OpenSubKey
(
'SYSTEM\ControlSet001\Control\Session Manager\Environment\'
)
;
`
$machinePath = $machineKey.GetValue('PATH', [string]::Empty, 'DoNotExpandEnvironmentNames').ToString(); `
$newPath = ('C:\Program Files\ccl;{0}' -f $machinePath) `
$newPath = ('C:\Program Files\ccl;{0}' -f $machinePath)
;
`
$machineKey.SetValue('PATH', $newPath, 'ExpandString'); `
$machineKey.Close();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment