File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -1696,15 +1696,12 @@ proc expandSymlink*(symlinkPath: string): string {.tags: [ReadIOEffect],
1696
1696
len = readlink (symlinkPath, result , len)
1697
1697
setLen (result , len)
1698
1698
1699
- type
1700
- # # Enumeration specifying an action to perform on symlink while copying.
1701
- SymlinkAction * = enum
1702
- saFollow, # # Copy the files symlinks point to
1703
- saCopy, # # Copy symlinks as symlinks
1704
- saSkip # # Ignore symlinks
1705
-
1706
- # # Options controlling the behavior of copying files.
1707
- CopyOptions * = object
1699
+ type SymlinkAction * = enum # # Action to perform on symlink while copying.
1700
+ saFollow, # # Copy the files symlinks point to
1701
+ saCopy, # # Copy symlinks as symlinks
1702
+ saSkip # # Ignore symlinks
1703
+
1704
+ type CopyOptions * = object # # Options controlling the files copying.
1708
1705
symlinkAction* : SymlinkAction # # Action to perform on symlink
1709
1706
1710
1707
proc copyFile * (source, dest: string ,
You can’t perform that action at this time.
0 commit comments