-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove extraneous text from license file
In order to be recognized by GitHub's automatic license detection system, the license file must contain only the exact license text, which can be sourced from choosealicense.com. Please do not modify this file in any way.
- Loading branch information
Showing
4 changed files
with
36 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,3 @@ | ||
This file includes licensing information for Arduino GitHub Actions. | ||
|
||
Copyright (c) 2019 ARDUINO SA | ||
|
||
The software is released under the GNU General Public License, which covers the main body | ||
of the [insert app name] code. The terms of this license can be found at: | ||
https://www.gnu.org/licenses/gpl-3.0.en.html | ||
|
||
You can be released from the requirements of the above licenses by purchasing | ||
a commercial license. Buying such a license is mandatory if you want to modify or | ||
otherwise use the software for commercial activities involving the Arduino | ||
software without disclosing the source code of your own applications. To purchase | ||
a commercial license, send an email to [email protected] | ||
|
||
GNU GENERAL PUBLIC LICENSE | ||
Version 3, 29 June 2007 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
// Copyright (c) 2019 ARDUINO SA | ||
// | ||
// The software is released under the GNU General Public License, which covers the main body | ||
// of the arduino/setup-taskfile code. The terms of this license can be found at: | ||
// https://www.gnu.org/licenses/gpl-3.0.en.html | ||
// | ||
// You can be released from the requirements of the above licenses by purchasing | ||
// a commercial license. Buying such a license is mandatory if you want to modify or | ||
// otherwise use the software for commercial activities involving the Arduino | ||
// software without disclosing the source code of your own applications. To purchase | ||
// a commercial license, send an email to [email protected] | ||
|
||
import io = require("@actions/io"); | ||
import path = require("path"); | ||
import os = require("os"); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
// Copyright (c) 2019 ARDUINO SA | ||
// | ||
// The software is released under the GNU General Public License, which covers the main body | ||
// of the arduino/setup-taskfile code. The terms of this license can be found at: | ||
// https://www.gnu.org/licenses/gpl-3.0.en.html | ||
// | ||
// You can be released from the requirements of the above licenses by purchasing | ||
// a commercial license. Buying such a license is mandatory if you want to modify or | ||
// otherwise use the software for commercial activities involving the Arduino | ||
// software without disclosing the source code of your own applications. To purchase | ||
// a commercial license, send an email to [email protected] | ||
|
||
// Load tempDirectory before it gets wiped by tool-cache | ||
let tempDirectory = process.env["RUNNER_TEMP"] || ""; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
// Copyright (c) 2019 ARDUINO SA | ||
// | ||
// The software is released under the GNU General Public License, which covers the main body | ||
// of the arduino/setup-taskfile code. The terms of this license can be found at: | ||
// https://www.gnu.org/licenses/gpl-3.0.en.html | ||
// | ||
// You can be released from the requirements of the above licenses by purchasing | ||
// a commercial license. Buying such a license is mandatory if you want to modify or | ||
// otherwise use the software for commercial activities involving the Arduino | ||
// software without disclosing the source code of your own applications. To purchase | ||
// a commercial license, send an email to [email protected] | ||
|
||
import * as core from "@actions/core"; | ||
import * as installer from "./installer"; | ||
|
||
|