We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15f60fe commit 56fc0ffCopy full SHA for 56fc0ff
src/Commands/PluginExportCommand.php
@@ -120,7 +120,7 @@ public static function installByRelation()
120
}
121
//symlink(__DIR__ . "/\$source", base_path()."/\$dest");
122
copy_dir(__DIR__ . "/\$source", base_path()."/\$dest");
123
- echo "Create $dest\r\n";
+ echo "Create \$dest\r\n";
124
125
126
@@ -135,9 +135,9 @@ public static function uninstallByRelation()
135
if (!is_dir(\$path) && !is_file(\$path)) {
136
continue;
137
138
- echo "Remove $dest\r\n";
139
- if (is_file($path) || is_link($path)) {
140
- unlink($path);
+ echo "Remove \$dest\r\n";
+ if (is_file(\$path) || is_link(\$path)) {
+ unlink(\$path);
141
142
143
remove_dir(\$path);
0 commit comments