Skip to content

Commit

Permalink
Merge pull request pentaho#900 from Advent51/PSW-229
Browse files Browse the repository at this point in the history
[PSW-229] Script files don't have an header with Copyright data
  • Loading branch information
mkambol authored Jun 6, 2017
2 parents 5aedbd4 + 91d872e commit c843552
Show file tree
Hide file tree
Showing 11 changed files with 71 additions and 4 deletions.
10 changes: 10 additions & 0 deletions assemblies/psw-ce/src/main/resources/cpappend.bat
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@

REM ***************************************************************************
REM This software is subject to the terms of the Eclipse Public License v1.0
REM Agreement, available at the following URL:
REM http://www.eclipse.org/legal/epl-v10.html.
REM You must accept the terms of that agreement to use this software.
REM
REM Copyright (c) 2007-2017 Pentaho Corporation.. All rights reserved.
REM ***************************************************************************

set CP=%CP%;%1
9 changes: 9 additions & 0 deletions assemblies/psw-ce/src/main/resources/set-pentaho-env.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@

REM ***************************************************************************
REM This software is subject to the terms of the Eclipse Public License v1.0
REM Agreement, available at the following URL:
REM http://www.eclipse.org/legal/epl-v10.html.
REM You must accept the terms of that agreement to use this software.
REM
REM Copyright (c) 2009-2017 Pentaho Corporation.. All rights reserved.
REM ***************************************************************************

rem ---------------------------------------------------------------------------
rem Finds a suitable Java
rem
Expand Down
10 changes: 10 additions & 0 deletions assemblies/psw-ce/src/main/resources/set-pentaho-env.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
#!/bin/sh

# ***************************************************************************
# This software is subject to the terms of the Eclipse Public License v1.0
# Agreement, available at the following URL:
# http://www.eclipse.org/legal/epl-v10.html.
# You must accept the terms of that agreement to use this software.
#
# Copyright (c) 2009-2017 Pentaho Corporation.. All rights reserved.
# ***************************************************************************

# -----------------------------------------------------------------------------
# Finds a suitable Java
#
Expand Down
9 changes: 9 additions & 0 deletions assemblies/psw-ce/src/main/resources/workbench.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
@echo off

REM ***************************************************************************
REM This software is subject to the terms of the Eclipse Public License v1.0
REM Agreement, available at the following URL:
REM http://www.eclipse.org/legal/epl-v10.html.
REM You must accept the terms of that agreement to use this software.
REM
REM Copyright (c) 2007-2017 Pentaho Corporation.. All rights reserved.
REM ***************************************************************************

cd /D %~dp0

rem Schema Workbench launch script
Expand Down
2 changes: 1 addition & 1 deletion assemblies/psw-ce/src/main/resources/workbench.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# http://www.eclipse.org/legal/epl-v10.html.
# You must accept the terms of that agreement to use this software.
#
# Copyright (C) 2007-2010 Pentaho and others
# Copyright (C) 2007-2017 Pentaho and others
# All Rights Reserved.
#
# Launch Mondrian Schema Workbench on Linux, UNIX or Cygwin
Expand Down
10 changes: 10 additions & 0 deletions bin/checkFile.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
#!/bin/bash

# ***************************************************************************
# This software is subject to the terms of the Eclipse Public License v1.0
# Agreement, available at the following URL:
# http://www.eclipse.org/legal/epl-v10.html.
# You must accept the terms of that agreement to use this software.
#
# Copyright (c) 2009-2017 Pentaho Corporation.. All rights reserved.
# ***************************************************************************

#
# Checks that a file is valid.
# Used by perforce submit trigger, via runTrigger.
Expand Down
2 changes: 1 addition & 1 deletion bin/loadFoodMart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# http://www.eclipse.org/legal/epl-v10.html.
# You must accept the terms of that agreement to use this software.
#
# Copyright (C) 2008-2012 Pentaho and others
# Copyright (C) 2008-2017 Pentaho and others
# All Rights Reserved.
#
# Sample scripts to load Mondrian's database for various databases.
Expand Down
10 changes: 10 additions & 0 deletions bin/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
#!/bin/bash

# ***************************************************************************
# This software is subject to the terms of the Eclipse Public License v1.0
# Agreement, available at the following URL:
# http://www.eclipse.org/legal/epl-v10.html.
# You must accept the terms of that agreement to use this software.
#
# Copyright (c) 2005-2017 Pentaho Corporation.. All rights reserved.
# ***************************************************************************

# do not use ksh, use bash
#####################################################################
#
Expand Down
9 changes: 9 additions & 0 deletions bin/runtest.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
#!/bin/bash

# ***************************************************************************
# This software is subject to the terms of the Eclipse Public License v1.0
# Agreement, available at the following URL:
# http://www.eclipse.org/legal/epl-v10.html.
# You must accept the terms of that agreement to use this software.
#
# Copyright (c) 2005-2017 Pentaho Corporation.. All rights reserved.
# ***************************************************************************

declare -r DIR=$(dirname $0)

LOCATION="$PWD/$DIR"
Expand Down
2 changes: 1 addition & 1 deletion mondrian/src/site/resources/doc/deployDoc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# http://www.eclipse.org/legal/epl-v10.html.
# You must accept the terms of that agreement to use this software.
#
# Copyright (C) 2005-2009 Pentaho
# Copyright (C) 2005-2017 Pentaho
# All Rights Reserved.
#
# This is a script to deploy Mondrian's website.
Expand Down
2 changes: 1 addition & 1 deletion mondrian/src/site/resources/doc/doc2web.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# http://www.eclipse.org/legal/epl-v10.html.
# You must accept the terms of that agreement to use this software.
#
# Copyright (C) 2005-2011 Pentaho
# Copyright (C) 2005-2017 Pentaho
# All Rights Reserved.
#
# Converts documentation from Mondrian's source format to Pentaho's web site.
Expand Down

0 comments on commit c843552

Please sign in to comment.