genbox 1.0.169 → 1.0.170
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/attach.js +2 -2
- package/package.json +1 -1
package/dist/commands/attach.js
CHANGED
|
@@ -648,8 +648,8 @@ async function attachToSession(ipAddress, keyPath, sessionName, genboxName) {
|
|
|
648
648
|
if (uploadedPaths.has(localPath)) {
|
|
649
649
|
return;
|
|
650
650
|
}
|
|
651
|
-
// Show
|
|
652
|
-
showTmuxMessage(ipAddress, keyPath, sessionName, '
|
|
651
|
+
// Show processing message in tmux (yellow background, stays until replaced)
|
|
652
|
+
showTmuxMessage(ipAddress, keyPath, sessionName, 'PROCESSING IMAGE - please wait...', 'uploading');
|
|
653
653
|
// Upload the file (this happens in background, might cause brief pause)
|
|
654
654
|
const result = uploadFileSync(localPath, ipAddress, keyPath);
|
|
655
655
|
if (result.success) {
|