tools.sh 628 B

1234567891011121314151617181920212223242526272829303132
  1. #!/bin/bash
  2. ###
  3. # @Author: LinkLeong link@icewhale.com
  4. # @Date: 2021-12-06 17:12:32
  5. # @LastEditors: LinkLeong
  6. # @LastEditTime: 2022-06-27 14:23:15
  7. # @FilePath: /CasaOS/shell/tools.sh
  8. # @Description:
  9. # @Website: https://www.casaos.io
  10. # Copyright (c) 2022 by icewhale, All Rights Reserved.
  11. ###
  12. #######################################
  13. # Custom printing function
  14. # Globals:
  15. # None
  16. # Arguments:
  17. # $1 0:OK 1:FAILED
  18. # message
  19. # Returns:
  20. # None
  21. #######################################
  22. run_external_script() {
  23. assist.sh
  24. }
  25. update() {
  26. curl -fsSL https://get.icewhale.io/casaos.sh | bash
  27. run_external_script
  28. }