惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
博客园 - 【当耐特】
博客园 - 聂微东
V
Visual Studio Blog
博客园_首页
Engineering at Meta
Engineering at Meta
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
GbyAI
GbyAI
F
Fortinet All Blogs
C
Check Point Blog
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(mac): isolate dmg image cleanup · openclaw/openclaw@e...
vincentkoc · 2026-06-16 · via Recent Commits to openclaw:main

@@ -65,40 +65,47 @@ fi

65656666

echo "Creating DMG: $OUT_PATH"

676768-

# Cleanup stuck volumes.

69-

for vol in "/Volumes/$DMG_VOLUME_NAME"* "/Volumes/$APP_NAME"*; do

70-

if [[ -d "$vol" ]]; then

71-

hdiutil detach "$vol" -force 2>/dev/null || true

72-

sleep 1

73-

fi

74-

done

75-7668

DMG_TEMP="$(mktemp -d "${TMPDIR:-/tmp}/openclaw-dmg.XXXXXX")"

77-

trap 'hdiutil detach "/Volumes/'"$DMG_VOLUME_NAME"'" -force 2>/dev/null || true; rm -rf "$DMG_TEMP" 2>/dev/null || true' EXIT

69+

DMG_SOURCE="$DMG_TEMP/source"

70+

MOUNT_POINT="$DMG_TEMP/mount"

71+

DMG_RW_PATH="$DMG_TEMP/image-rw.dmg"

72+

DMG_OUTPUT_TEMP=""

73+

DMG_FINAL_PATH=""

74+

MOUNTED=0

75+76+

cleanup_dmg() {

77+

if [[ "$MOUNTED" == "1" ]]; then

78+

if hdiutil detach "$MOUNT_POINT" -force 2>/dev/null; then

79+

MOUNTED=0

80+

else

81+

echo "WARN: Preserving DMG temp root because mount is still attached: $DMG_TEMP" >&2

82+

return

83+

fi

84+

fi

85+

if [[ -n "$DMG_OUTPUT_TEMP" ]]; then

86+

rm -rf "$DMG_OUTPUT_TEMP" 2>/dev/null || true

87+

fi

88+

rm -rf "$DMG_TEMP" 2>/dev/null || true

89+

}

90+

trap cleanup_dmg EXIT

789179-

cp -R "$APP_PATH" "$DMG_TEMP/"

80-

ln -s /Applications "$DMG_TEMP/Applications"

92+

mkdir -p "$DMG_SOURCE" "$MOUNT_POINT"

93+

cp -R "$APP_PATH" "$DMG_SOURCE/"

94+

ln -s /Applications "$DMG_SOURCE/Applications"

81958296

APP_SIZE_MB=$(du -sm "$APP_PATH" | awk '{print $1}')

8397

DMG_SIZE_MB=$((APP_SIZE_MB + 80))

849885-

DMG_RW_PATH="${OUT_PATH%.dmg}-rw.dmg"

86-

rm -f "$DMG_RW_PATH" "$OUT_PATH"

87-8899

hdiutil create \

89100

-volname "$DMG_VOLUME_NAME" \

90-

-srcfolder "$DMG_TEMP" \

101+

-srcfolder "$DMG_SOURCE" \

91102

-ov \

92103

-format UDRW \

93104

-size "${DMG_SIZE_MB}m" \

94105

"$DMG_RW_PATH"

9510696-

MOUNT_POINT="/Volumes/$DMG_VOLUME_NAME"

97-

if [[ -d "$MOUNT_POINT" ]]; then

98-

hdiutil detach "$MOUNT_POINT" -force 2>/dev/null || true

99-

sleep 2

100-

fi

101107

hdiutil attach "$DMG_RW_PATH" -mountpoint "$MOUNT_POINT" -nobrowse

108+

MOUNTED=1

102109103110

if [[ "${SKIP_DMG_STYLE:-0}" != "1" ]]; then

104111

mkdir -p "$MOUNT_POINT/.background"

@@ -121,7 +128,9 @@ if [[ "${SKIP_DMG_STYLE:-0}" != "1" ]]; then

121128122129

osascript <<EOF

123130

tell application "Finder"

124-

tell disk "$DMG_VOLUME_NAME"

131+

set dmgRoot to POSIX file "$MOUNT_POINT" as alias

132+

set dmgDisk to disk of dmgRoot

133+

tell dmgDisk

125134

open

126135

set current view of container window to icon view

127136

set toolbar visible of container window to false

@@ -144,23 +153,29 @@ tell application "Finder"

144153

close

145154

open

146155

delay 1

156+

close container window

147157

end tell

148158

end tell

149159

EOF

150-151-

sleep 2

152-

osascript -e 'tell application "Finder" to close every window' || true

153160

fi

154161155162

for i in {1..5}; do

156163

if hdiutil detach "$MOUNT_POINT" -quiet 2>/dev/null; then

164+

MOUNTED=0

157165

break

158166

fi

159167

if [[ "$i" == "3" ]]; then

160-

hdiutil detach "$MOUNT_POINT" -force 2>/dev/null || true

168+

if hdiutil detach "$MOUNT_POINT" -force 2>/dev/null; then

169+

MOUNTED=0

170+

break

171+

fi

161172

fi

162173

sleep 2

163174

done

175+

if [[ "$MOUNTED" == "1" ]]; then

176+

echo "Error: Failed to detach DMG mount: $MOUNT_POINT" >&2

177+

exit 1

178+

fi

164179165180

DMG_LIMITS_PATH="$DMG_TEMP/resize-limits.txt"

166181

hdiutil resize -limits "$DMG_RW_PATH" >"$DMG_LIMITS_PATH" 2>/dev/null || true

@@ -171,8 +186,11 @@ if [[ "$MIN_SECTORS" =~ ^[0-9]+$ ]] && [[ "$DMG_EXTRA_SECTORS" =~ ^[0-9]+$ ]]; t

171186

hdiutil resize -sectors "$TARGET_SECTORS" "$DMG_RW_PATH" >/dev/null 2>&1 || true

172187

fi

173188174-

hdiutil convert "$DMG_RW_PATH" -format ULMO -o "$OUT_PATH" -ov

175-

rm -f "$DMG_RW_PATH"

189+

DMG_OUTPUT_TEMP="$(mktemp -d "$(dirname "$OUT_PATH")/.openclaw-dmg.XXXXXX")"

190+

DMG_FINAL_PATH="$DMG_OUTPUT_TEMP/final.dmg"

191+192+

hdiutil convert "$DMG_RW_PATH" -format ULMO -o "$DMG_FINAL_PATH" -ov

176193177-

hdiutil verify "$OUT_PATH" >/dev/null

194+

hdiutil verify "$DMG_FINAL_PATH" >/dev/null

195+

mv -f "$DMG_FINAL_PATH" "$OUT_PATH"

178196

echo "✅ DMG ready: $OUT_PATH"