Commit 5ce5956 1 parent 039ab97 commit 5ce5956 Copy full SHA for 5ce5956
File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ export class DafnyInstaller {
101
101
102
102
private async cleanInstallDir ( ) : Promise < void > {
103
103
const installPath = this . getInstallationPath ( ) ;
104
- this . writeStatus ( `deleting previous Dafny installation at ${ installPath } ` ) ;
104
+ this . writeStatus ( `deleting previous Dafny installation at ${ installPath . fsPath } ` ) ;
105
105
try {
106
106
await workspace . fs . delete (
107
107
installPath ,
@@ -143,7 +143,7 @@ export class DafnyInstaller {
143
143
144
144
private async extractArchive ( archivePath : Uri ) : Promise < void > {
145
145
const dirPath = this . getInstallationPath ( ) ;
146
- this . writeStatus ( `extracting Dafny to ${ dirPath } ` ) ;
146
+ this . writeStatus ( `extracting Dafny to ${ dirPath . fsPath } ` ) ;
147
147
await extract ( archivePath . fsPath , { dir : dirPath . fsPath } ) ;
148
148
}
149
149
You can’t perform that action at this time.
0 commit comments