Skip to content

Commit

Permalink
Fix file path.
Browse files Browse the repository at this point in the history
  • Loading branch information
reitermarkus committed Nov 22, 2024
1 parent 0233fce commit a5d88f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tasks/vscode.rake
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ task :vscode => [:'brew:casks_and_formulae', :rust] do
command '/usr/bin/curl', '-fsSL', 'https://code.visualstudio.com/sha/download?build=stable&os=linux-deb-x64',
'-o', "#{tmpdir}/vscode.deb"
command sudo, 'debconf-set-selections', input: 'code code/add-microsoft-repo boolean true'
command sudo, 'apt', 'install', '--yes', './vscode.deb'
command sudo, 'apt', 'install', '--yes', "#{tmpdir}/vscode.deb"
end
end

Expand Down

0 comments on commit a5d88f5

Please sign in to comment.