fix: remove temporary cloudflared config

This commit is contained in:
Andras Bacsai 2024-04-17 11:22:43 +02:00
parent 2c1b3d5790
commit 55ed0f2374

View File

@ -40,6 +40,11 @@ public function handle(Server $server, string $cloudflare_token)
} catch (\Throwable $e) {
ray($e);
throw $e;
} finally {
$commands = collect([
"rm -fr /tmp/cloudflared",
]);
instant_remote_process($commands, $server);
}
}
}