How to upgrade from version 1.0.0 -> 1.0.1

cailiangliang@clldebian:~/.julia/packages/Blink/6QR5U/deps$ ls
build.jl  build.log  electron-v2.0.5-linux-x64.zip  julia.png
cailiangliang@clldebian:~/.julia/packages/Blink/6QR5U/deps$ cat build.log 
Warning: /home/cailiangliang/.curlrc:2: warning: 'http_proxy' is unknown
Warning: /home/cailiangliang/.curlrc:3: warning: 'https_proxy' is unknown
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  386k  100  386k    0     0   6602      0  0:01:00  0:00:59  0:00:01  3601
Warning: /home/cailiangliang/.curlrc:2: warning: 'http_proxy' is unknown
Warning: /home/cailiangliang/.curlrc:3: warning: 'https_proxy' is unknown
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   618    0   618    0     0    525      0 --:--:--  0:00:01 --:--:--   525
  0 46.3M    0  288k    0     0   1622      0  8:19:15  0:03:02  8:16:13     0cailiangliang@clldebian:~/.julia/packages/Blink/6QR5U/deps$ cat build.jl 
module BuildBlink
# put into module b/c some globals are defined in install.jl

include(joinpath(@__DIR__, "../src/AtomShell/install.jl"))

function get_installed_version()
    _path = Sys.isapple() ?
        joinpath(folder(), "version") :
        joinpath(folder(), "atom", "version")
    strip(read(_path, String), 'v')
end

if !isinstalled() || version != get_installed_version()
    install()
end

end

i download electron-v2.0.5-linux-x64.zip and put it in the deps folder. i am not familiar with how to write build script. Can you help me ?

The script is telling you to check in Blink/src/AtomShell/install.jl for instructions.

https://github.com/JunoLab/Blink.jl/blob/master/src/AtomShell/install.jl#L52-L58

if Sys.islinux()
  arch = Int == Int64 ? "x64" : "ia32"
  file = "electron-v2.0.5-linux-x64.zip"
  run(`unzip -q $file -d atom`)
  rm(file)
end

is this okay ?

You need to understand that the script is being run from a different directory, so to properly install it, the file needs to be unzipped in the right place. I’m not a user of this package, so I won’t comment further.

good suggestions. thanks for your help !