mirror of
https://github.com/tiny-pilot/tinypilot.git
synced 2023-10-01 22:58:29 +03:00
* Delegate quick-install's duties to get-tinypilot.sh (#1038) * Replace quick-install with get-tinypilot.sh Fixes #1023 Fixes #1025 * Tweak architecture explanation * Read local version from `VERSION` file. (#1040) * Read local version from version file. * Change get version response example. * Use a class-wide `_is_debug` patch. * Mock version file to point to a non-existent file. * Add test for empty version file. * Add test for version file has UTF-8 encoding. * Rename FileError to VersionFileError. * Split version file error catching. * Move debug mode version file tests to own class. * Request latest version from Gatekeeper API. (#1043) * Request latest version from Gatekeeper API. * Remove git module. * Remove debug behavior. * Improve version docstring. * Set an explicit encoding when reading response. * Rename non-obvious exception name. * Rename test. * Fix formatting. * Validate response data. * Rename response_json to response_dict. * Add `sudo` to install instructions. (#1045) * Specify custom TMPDIR for use with `mktemp`. (#1048) * Specify custom TMPDIR for use with mktemp. * Avoid exporting TMPDIR variable. * Revert "Add `sudo` to install instructions. (#1045)" (#1057) This reverts commit706f78d759. * Build bundle `ansible-role-tinypilot` version. (#1076) * Bundle a variable version of ansible role. * Only clone a single branch * Test bundle build. * Preserve array ordering. * Add comment about Ansible role dependencies. * Remove .git url suffix. * Revert "Test bundle build." This reverts commit33602757b1. * Build bundle ansible-role-tinypilot version. * Upgrade to Ansible 2.10.7. (#1086) * Use ansible version 2.10.7. * Test bundle build. * Set remote_user. * Revert "Test bundle build." This reverts commita9051bdffa. * Set default remote_user via ansible.cfg. * Test bundle build. * Update Ansible indirect dependencies. * Revert "Test bundle build." This reverts commitc8890a2fc0. Co-authored-by: Michael Lynch <mtlynch@users.noreply.github.com> Co-authored-by: Jan Heuermann <jan@jotaen.net>
11 lines
296 B
Bash
Executable File
11 lines
296 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "This script is now DEPRECATED." >&2
|
|
echo "Please switch to https://raw.githubusercontent.com/tiny-pilot/tinypilot/master/get-tinypilot.sh" >&2
|
|
|
|
curl \
|
|
--silent \
|
|
--show-error \
|
|
https://raw.githubusercontent.com/tiny-pilot/tinypilot/master/get-tinypilot.sh | \
|
|
bash -
|