We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
drawioを取得する際、Arm64版とAMD64版を両方取得し、そのうちどちらをインストr−るするか決めている。これはバグではないしきちんと動作するが、あまりかっこ良くない。
また、何らかの事情でインストールスクリプトを2度走らせる場合、2回も律儀にダウンロードしている。wgetのオプションを利用して、ダウンロード済みのパッケージは再ダウンロードしないようにすべき。
The text was updated successfully, but these errors were encountered:
PaleALE/install
Lines 72 to 82 in 8259812
を、こんな感じに変更する。
# Install the appropriate file based on the architecture. if $(arch | grep x86_64 > /dev/null); then curl -s https://api.github.com/repos/jgraph/drawio-desktop/releases/latest | grep browser_download_url | grep 'amd64*\.deb' | cut -d '"' -f 4 | wget -i -N - apt -f install -y ./drawio-amd64-*.deb elif $(arch | grep aarch64 > /dev/null); then curl -s https://api.github.com/repos/jgraph/drawio-desktop/releases/latest | grep browser_download_url | grep 'arm64*\.deb' | cut -d '"' -f 4 | wget -i -N - apt -f install -y ./drawio-arm64-*.deb else echo Program logic error at Draw.IO installation. exit 1 fi
Sorry, something went wrong.
suikan4github
No branches or pull requests
drawioを取得する際、Arm64版とAMD64版を両方取得し、そのうちどちらをインストr−るするか決めている。これはバグではないしきちんと動作するが、あまりかっこ良くない。
また、何らかの事情でインストールスクリプトを2度走らせる場合、2回も律儀にダウンロードしている。wgetのオプションを利用して、ダウンロード済みのパッケージは再ダウンロードしないようにすべき。
The text was updated successfully, but these errors were encountered: