This repository has been archived by the owner on May 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1619 from jcvenegas/1.5.4-fixes
release: backport for 1.5.x
- Loading branch information
Showing
7 changed files
with
140 additions
and
86 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
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
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// | ||
// Copyright (c) 2018-2019 Intel Corporation | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
// WARNING: This file is auto-generated - DO NOT EDIT! | ||
// | ||
// Note that some variables are "var" to allow them to be modified | ||
// by the tests. | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
) | ||
|
||
// name is the name of the runtime | ||
const name = "@RUNTIME_NAME@" | ||
|
||
// name of the project | ||
const project = "@PROJECT_NAME@" | ||
|
||
// prefix used to denote non-standard CLI commands and options. | ||
const projectPrefix = "@PROJECT_TYPE@" | ||
|
||
// original URL for this project | ||
const projectURL = "@PROJECT_URL@" | ||
|
||
const defaultRootDirectory = "@PKGRUNDIR@" | ||
|
||
// commit is the git commit the runtime is compiled from. | ||
var commit = "@COMMIT@" | ||
|
||
// version is the runtime version. | ||
var version = "@VERSION@" | ||
|
||
// project-specific command names | ||
var envCmd = fmt.Sprintf("%s-env", projectPrefix) | ||
var checkCmd = fmt.Sprintf("%s-check", projectPrefix) | ||
|
||
// project-specific option names | ||
var configFilePathOption = fmt.Sprintf("%s-config", projectPrefix) | ||
var showConfigPathsOption = fmt.Sprintf("%s-show-default-config-paths", projectPrefix) | ||
|
||
// Default config file used by stateless systems. | ||
var defaultRuntimeConfiguration = "@CONFIG_PATH@" | ||
|
||
// Alternate config file that takes precedence over | ||
// defaultRuntimeConfiguration. | ||
var defaultSysConfRuntimeConfiguration = "@SYSCONFIG@" |
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
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
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
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