native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #19 from onevcat/fix/migration-copy-instead-of-move

Fix migration: copy instead of move to preserve ~/.supacode

authored by

Wei Wang and committed by
GitHub
bf88143c b5d57ee0

+1 -1
+1 -1
supacode/Support/SupacodePaths.swift
··· 9 9 if !FileManager.default.fileExists(atPath: prowlDir.path(percentEncoded: false)), 10 10 FileManager.default.fileExists(atPath: legacyDir.path(percentEncoded: false)) 11 11 { 12 - try? FileManager.default.moveItem(at: legacyDir, to: prowlDir) 12 + try? FileManager.default.copyItem(at: legacyDir, to: prowlDir) 13 13 } 14 14 return prowlDir 15 15 }