Skip to content

Commit ebb70df

Browse files
committed
Exploring filesystem, refs #5
1 parent 38dcc61 commit ebb70df

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

‎.appveyor.yml‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ platform: x64
1717
# If the build is successful, AppVeyor caches these files and
1818
# directories for future builds
1919
cache:
20-
- C:\Strawberry -> .appveyor_clear_cache.txt
2120
- C:\Rakudo -> .appveyor_clear_cache.txt
2221

2322
branches:

‎lib/Pod/To/Cached.pm6‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,9 @@ method freeze( --> Bool ){
263263

264264
methodrm-cache(){
265265
if$*SPEC~~IO::Spec::Win32{
266-
shell"dir; rmdir /S /Q \""~$!path.trans( ["/"] => ["\\"] ) ~"\"";
266+
shell"dir";
267+
shell'echo %cd%';
268+
shell"rmdir /S /Q \""~$!path.trans( ["/"] => ["\\"] ) ~"\"";
267269
} else{
268270
shell"rm -rf $!path";
269271
}

0 commit comments

Comments
(0)