mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-18 07:44:26 +01:00
fix: chmod perm
This commit is contained in:
@@ -22,7 +22,7 @@ enum ShellFunc {
|
||||
static const scriptPath = '/dev/shm/$scriptFile';
|
||||
static const installShellCmd = """
|
||||
cat > $scriptPath
|
||||
chmod +x $scriptPath
|
||||
chmod 744 $scriptPath
|
||||
""";
|
||||
|
||||
String get flag {
|
||||
|
||||
@@ -2,6 +2,6 @@
|
||||
|
||||
class BuildData {
|
||||
static const String name = "ServerBox";
|
||||
static const int build = 992;
|
||||
static const int script = 49;
|
||||
static const int build = 1011;
|
||||
static const int script = 50;
|
||||
}
|
||||
|
||||
@@ -145,9 +145,8 @@ class SSHPageState extends State<SSHPage>
|
||||
_terminal,
|
||||
key: _termKey,
|
||||
controller: _terminalController,
|
||||
keyboardType: letterCache
|
||||
? TextInputType.text
|
||||
: TextInputType.visiblePassword,
|
||||
keyboardType:
|
||||
letterCache ? TextInputType.text : TextInputType.visiblePassword,
|
||||
enableSuggestions: !letterCache,
|
||||
textStyle: _terminalStyle,
|
||||
theme: _terminalTheme,
|
||||
|
||||
Reference in New Issue
Block a user