wayfind 2.0.52 → 2.0.54
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/bin/team-context.js
CHANGED
|
@@ -4841,7 +4841,7 @@ async function pullTeamContext() {
|
|
|
4841
4841
|
}
|
|
4842
4842
|
|
|
4843
4843
|
try {
|
|
4844
|
-
const result = spawnSync('git', ['pull', '--rebase', '
|
|
4844
|
+
const result = spawnSync('git', ['pull', '--rebase', '-q'], {
|
|
4845
4845
|
cwd: teamDir,
|
|
4846
4846
|
env,
|
|
4847
4847
|
timeout: 30000,
|
|
@@ -5762,7 +5762,7 @@ const COMMANDS = {
|
|
|
5762
5762
|
console.log(`\nUpdating ${containerName} (compose: ${composeDir})...`);
|
|
5763
5763
|
const pullResult = spawnSync('docker', ['compose', 'pull'], { cwd: composeDir, stdio: 'inherit' });
|
|
5764
5764
|
if (!pullResult.error && pullResult.status === 0) {
|
|
5765
|
-
spawnSync('docker', ['compose', 'up', '-d'], { cwd: composeDir, stdio: 'inherit' });
|
|
5765
|
+
spawnSync('docker', ['compose', 'up', '-d', '--force-recreate'], { cwd: composeDir, stdio: 'inherit' });
|
|
5766
5766
|
console.log(`${containerName} updated.`);
|
|
5767
5767
|
|
|
5768
5768
|
// Post-deploy smoke check
|
package/package.json
CHANGED