Files
CK-X/scripts
davide ff602f5fb6 feat: fix quick install by switching from process substitution to pipe
The previous command used process substitution:
  bash <(curl -fsSL ...)

This can fail on some systems due to how /dev/fd handles file descriptors,
especially when using sudo. The new approach uses a pipe instead:
  curl -fsSL ... | sudo bash

This is more portable and avoids permission issues related to temp files.
2025-04-09 20:45:57 +02:00
..
2025-04-05 15:20:55 +05:30
2025-04-05 15:20:55 +05:30
2025-04-05 15:20:55 +05:30