Skip to content

Commit cdd6366

Browse files
Merge pull request #19 from fledge-iot/FOGL-4715
FOGL-4715: Replaced master with main
2 parents 685ea13 + 1e29731 commit cdd6366

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ The make_rpm Script
141141
Building a RPM Package
142142
======================
143143

144-
``make_rpm`` script automatically do Fledge clone repo with branch master (by default) and then ``sudo make install`` followed by some prerequisite
144+
``make_rpm`` script automatically do Fledge clone repo with branch main (by default) and then ``sudo make install`` followed by some prerequisite
145145

146146
You may override the branch with ``-b`` or skip Fledge build with ``-s``. For more info just see its help ``-h``
147147

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:18.04
22

33
MAINTAINER Vaibhav Singhal "[email protected]"
44

5-
ARG FLEDGE_BRANCH=master
5+
ARG FLEDGE_BRANCH=main
66
ENV FLEDGE_BRANCH ${FLEDGE_BRANCH}
77
RUN apt-get update && apt-get -y upgrade
88
RUN apt-get install -y git rsyslog

docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/
2525
docker build --tag fledge --build-arg FLEDGE_BRANCH=develop .
2626
```
2727

28-
where name of the image is fledge, FLEDGE_BRANCH is the branch to build (develop, master, 1.5.2 ,etc)
28+
where name of the image is fledge, FLEDGE_BRANCH is the branch to build (develop, main, 1.5.2 ,etc)
2929

3030
### Run container
3131

make_rpm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ set -e
2323

2424
PKG_ROOT=`pwd` # The script must be executed from the root git directory
2525
repo_name="fledge" # Name of the Git repository
26-
branch="master" # Default Git branch to use
26+
branch="main" # Default Git branch to use
2727
pkg_name="fledge" # Name of the package to build
2828
architecture="x86_64" # The architecture for which the rpm should be created
2929
rhpg_pkg="rh-postgresql96" # Name of the Red Hat package for postgres

plugins/make_deb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
set -e
2323

2424
# Default branch to package
25-
BRANCH_NAME=master
25+
BRANCH_NAME=main
2626
USAGE="$(basename "$0") [-h] [-a] [-b <branch>] repository ...
2727
This script is used to create the Debian package for a Fledge plugin
2828

plugins/make_rpm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
set -e
2323

2424
# Default branch to package
25-
branch=master
25+
branch=main
2626

2727
usage="$(basename "$0") [-a] [-c] [-h] [-b <branch>] repository ...
2828
This script is used to create the RPM package for a Fledge plugin

service/make_deb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
set -e
2323

2424
# Default branch to package
25-
BRANCH_NAME=master
25+
BRANCH_NAME=main
2626

2727
USAGE="$(basename "$0") [-h] [-a] [-b <branch>] repository ...
2828
This script is used to create the Debian package for a Fledge service

service/make_rpm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
set -e
2323

2424
# Default branch to package
25-
BRANCH_NAME=master
25+
BRANCH_NAME=main
2626

2727
USAGE="$(basename "$0") [-h] [-a] [-b <branch>] repository ...
2828
This script is used to create the RPM package for a Fledge service

0 commit comments

Comments
 (0)