mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-06-16 05:55:33 +00:00
* switch branches * update user interface * switch branch * switch branch * change branch * submit 0.3.3
32 lines
628 B
Bash
32 lines
628 B
Bash
#!/bin/bash
|
|
###
|
|
# @Author: LinkLeong link@icewhale.com
|
|
# @Date: 2021-12-06 17:12:32
|
|
# @LastEditors: LinkLeong
|
|
# @LastEditTime: 2022-06-27 14:23:15
|
|
# @FilePath: /CasaOS/shell/tools.sh
|
|
# @Description:
|
|
# @Website: https://www.casaos.io
|
|
# Copyright (c) 2022 by icewhale, All Rights Reserved.
|
|
###
|
|
|
|
#######################################
|
|
# Custom printing function
|
|
# Globals:
|
|
# None
|
|
# Arguments:
|
|
# $1 0:OK 1:FAILED
|
|
# message
|
|
# Returns:
|
|
# None
|
|
#######################################
|
|
|
|
|
|
run_external_script() {
|
|
assist.sh
|
|
}
|
|
|
|
update() {
|
|
curl -fsSL https://get.icewhale.io/casaos.sh | bash
|
|
run_external_script
|
|
} |