fix: Use edge as default channel as others not released yet for some boards

这个提交包含在:
Maciej Krüger 2018-10-21 15:29:35 +02:00
父节点 ff721929a9
当前提交 1c7fa57950
共有 2 个文件被更改,包括 2 次插入2 次删除

查看文件

@ -59,7 +59,7 @@ async function pullOrClone (repo, dest, checkout) {
await exec('git', dest, 'submodule', 'update')
let newCommit = String(execWithOutput('git', '-C', dest, 'rev-parse', '--verify', 'HEAD').stdout)
return currentCommit !== newCommit // returns bool if snap need recompilation
return currentCommit !== newCommit // returns true if snap needs recompilation
}
async function main () {

查看文件

@ -35,7 +35,7 @@ fi
dev_user=$(echo "$user_email" | sed "s|@.*||g")
read_prompt "Device channel" "stable"
read_prompt "Device channel" "edge" # TODO: switch to "stable"/"beta" once released for rpi3
channel="$val"
read_prompt "Device environment" "dev" " - use prod for production"
dev_env="$val"