Skip to content

Commit d234e82

Browse files
committed
wip
1 parent 4d5f8ae commit d234e82

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

use-cache-volume/app/main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@ def run(self):
1313
# /mnt/cache_volumeのファイル一覧を取得して通知
1414
result = subprocess.run(['ls', '-la', '/mnt/cache_volume'], capture_output=True, text=True)
1515
actfw_core.notify([{
16-
"message": f"cache_volume contents:\n{result.stdout}"
16+
"message": f"ls -la /mnt/cache_volume\n{result.stdout}"
1717
}])
1818

19-
2019
# ファイルが存在しない場合は初期データを作成
2120
if not os.path.exists(FILE_PATH):
2221
initial_data = {

0 commit comments

Comments
 (0)